diff --git a/auth.html b/auth.html
index 658514d9..0c567ccc 100644
--- a/auth.html
+++ b/auth.html
@@ -38,7 +38,11 @@
+
+
+
+
-
diff --git a/auth.js b/auth.js
index 98b9d2f1..4daadc92 100644
--- a/auth.js
+++ b/auth.js
@@ -136,6 +136,20 @@ document.querySelector(".sign-up-form").addEventListener('submit', function(even
console.error('Signup error:', error);
}
});
+document.querySelector('#login-btn').addEventListener('click', (event) => {
+ event.preventDefault();
+
+ const emailInput = document.getElementById('login-email');
+ const rememberMeCheckbox = document.getElementById('login-remember');
+
+ if (rememberMeCheckbox.checked) {
+ localStorage.setItem('rememberedEmail', emailInput.value);
+ } else {
+ localStorage.removeItem('rememberedEmail');
+ }
+
+ // Continue with your existing login logic...
+});
// Toggle password visibility
function togglePassword(fieldId, icon) {
diff --git a/index.html b/index.html
index d01aba38..c274f7c1 100644
--- a/index.html
+++ b/index.html
@@ -322,55 +322,16 @@
/* circle styles */
.circle {
- height: 24px;
- width: 24px;
- border-radius: 24px;
- background-color: rgb(255, 0, 0);
- position: fixed;
- top: 0;
- left: 0;
- pointer-events: none;
- z-index: 99999999;
-
-
-
-
-
-
-
-
-
-
-
-
Ready to Explore the World...
-
-
+
-
-
-
+ animateCircles();
+ });
+
@@ -4206,6 +4114,5 @@
Exclusive Deals and Offers!
-
-
+