forked from mansiruhil/AmbuFlow
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathup.html
229 lines (189 loc) · 8.16 KB
/
up.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Register & Login</title>
<link rel="stylesheet" href="preloaderStyle.css">
<link rel="stylesheet" href="src/css/up.css" />
<link rel="shortcut icon" href="ambulance.png" type="image/x-icon" />
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.15.3/css/all.min.css" />
</head>
<body>
<div class="gtranslate_wrapper"></div>
<script>window.gtranslateSettings = { "default_language": "en", "detect_browser_language": true, "wrapper_selector": ".gtranslate_wrapper" }</script>
<script src="https://cdn.gtranslate.net/widgets/latest/float.js" defer></script>
<!-- Preloader -->
<div id="preloader">
<div class="wrapper">
<div class="box-wrap">
<div class="box one"></div>
<div class="box two"></div>
<div class="box three"></div>
<div class="box four"></div>
<div class="box five"></div>
<div class="box six"></div>
</div>
</div>
</div>
<div class="container">
<div class="forms-container">
<div class="signin-signup">
<!-- Sign In Form -->
<form action="#" class="sign-in-form">
<h2 class="title">Sign in</h2>
<div class="input-field">
<i class="fas fa-user"></i>
<input type="text" placeholder="Username" required />
</div>
<div class="input-field">
<i class="fas fa-lock" id="toggle-password"></i>
<input type="password" placeholder="Password" id="password-input" required />
</div>
<input type="submit" value="Login" class="btn solid" />
<p class="social-text">Or Sign in with social platforms</p>
<div class="social-media">
<a href="https://www.google.com" target="_blank" class="social-icon"><i class="fab fa-google"
style="font-size: 24px; color: #4285f4"></i></a>
<a href="https://facebook.com/YourPage" target="_blank" class="social-icon"><i class="fab fa-facebook-f"
style="font-size: 24px; color: #4267b2"></i></a>
<a href="https://github.com/YourGitHubProfile" target="_blank" class="social-icon"><i class="fab fa-github"
style="font-size: 24px; color: #333"></i></a>
</div>
</form>
<!-- Sign Up Form -->
<form action="#" class="sign-up-form">
<h2 class="title">Sign up</h2>
<div class="input-field">
<i class="fas fa-user"></i>
<input type="text" placeholder="Username" required />
</div>
<div class="input-field">
<i class="fas fa-envelope"></i>
<input type="email" placeholder="Email" required />
</div>
<div class="input-field">
<i class="fas fa-lock" id="toggle-password-signup"></i>
<input type="password" placeholder="Password" id="password-input-signup" required />
</div>
<input type="submit" class="btn" value="Sign up" />
</form>
</div>
</div>
<div class="panels-container">
<div class="panel left-panel">
<div class="content">
<h3>New here ?</h3>
<p>Discover new experiences with AmbuFlow! <br />Get access to exclusive content and features. <br />Create
your account.</p>
<button class="btn transparent" id="sign-up-btn">Sign up</button>
</div>
</div>
<div class="panel right-panel">
<div class="content">
<h3>One of us ?</h3>
<p>Welcome to our community</p>
<button class="btn transparent" id="sign-in-btn">Sign in</button>
</div>
</div>
</div>
</div>
<script src="preloader.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/uuid/8.3.2/uuid.min.js">
</script>
<script>
sign_in_btn = document.querySelector("#sign-in-btn");
sign_up_btn = document.querySelector("#sign-up-btn");
container = document.querySelector(".container");
// Toggle between sign up and sign in
sign_up_btn.addEventListener("click", () => {
container.classList.add("sign-up-mode");
});
sign_in_btn.addEventListener("click", () => {
container.classList.remove("sign-up-mode");
});
// Sign in form submission
document.querySelector(".sign-in-form").addEventListener('submit', function (event) {
event.preventDefault();
username = document.querySelector(".sign-in-form input[type='text']").value;
password = document.querySelector(".sign-in-form input[type='password']").value;
// Retrieve stored credentials
storedUsername = localStorage.getItem('username');
storedPassword = localStorage.getItem('password');
console.log(`Stored Username: ${storedUsername}, Input Username: ${username}`);
console.log(`Stored Password: ${storedPassword}, Input Password: ${password}`);
// Validate input against stored credentials
if (username === storedUsername && password === storedPassword) {
alert('Login successful!');
window.location.href = 'index.html';
} else {
alert('Invalid username or password');
}
});
// Sign up form submission
document.querySelector(".sign-up-form").addEventListener('submit', function (event) {
event.preventDefault();
username = document.querySelector(".sign-up-form input[type='text']").value;
email = document.querySelector(".sign-up-form input[type='email']").value;
password = document.querySelector(".sign-up-form input[type='password']").value;
if (username === '' || email === '' || password === '') {
alert('Please fill in all fields');
return;
}
// Store the username and password in localStorage
localStorage.setItem('username', username);
localStorage.setItem('password', password); // Ensure you're storing the password
alert('Your account is created successfully. Please login to access the website.');
container.classList.remove("sign-up-mode"); // Optionally switch to sign in mode
});
// Toggle password visibility
function togglePassword(fieldId, icon) {
field = document.getElementById(fieldId);
field.type = field.type === 'password' ? 'text' : 'password';
icon.classList.toggle('fa-lock-open');
icon.classList.toggle('fa-lock');
}
document.getElementById("toggle-password").addEventListener("click", function () {
togglePassword("password-input", this);
});
document.getElementById("toggle-password-signup").addEventListener("click", function () {
togglePassword("password-input-signup", this);
});
// Circle animation
coords = { x: 0, y: 0 };
circles = document.querySelectorAll(".circle");
colors = [
"#ffb56b", "#fdaf69", "#f89d63", "#f59761", "#ef865e",
"#ec805d", "#e36e5c", "#df685c", "#d5585c", "#d1525c",
"#c5415d", "#c03b5d", "#b22c5e", "#ac265e", "#9c155f",
"#950f5f", "#830060", "#7c0060", "#680060", "#60005f",
"#48005f", "#3d005e",
];
circles.forEach(function (circle, index) {
circle.x = 0;
circle.y = 0;
circle.style.backgroundColor = colors[index % colors.length];
});
window.addEventListener("mousemove", function (e) {
coords.x = e.clientX;
coords.y = e.clientY;
});
function animateCircles() {
let x = coords.x;
let y = coords.y;
circles.forEach(function (circle, index) {
circle.style.left = x - 12 + "px";
circle.style.top = y - 12 + "px";
circle.style.scale = (circles.length - index) / circles.length;
circle.x = x;
circle.y = y;
nextCircle = circles[index + 1] || circles[0];
x += (nextCircle.x - x) * 0.3;
y += (nextCircle.y - y) * 0.3;
});
requestAnimationFrame(animateCircles);
}
animateCircles();
</script>
</body>
</html>