-
Notifications
You must be signed in to change notification settings - Fork 300
/
signup.html
442 lines (403 loc) · 13.7 KB
/
signup.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
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Sign Up</title>
<link rel="stylesheet" href="src/Styles/scroll.css">
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/5.3.0/css/bootstrap.min.css">
<link rel="stylesheet" href="./src/bootstrap/css/bootstrap.min.css">
<link rel="stylesheet" href="./src/Styles/Style.css">
<link rel="stylesheet" href="./src/Styles/Responsive.css">
<link rel="stylesheet" href="./src/Styles/signup.css">
<link href="https://fonts.googleapis.com/css2?family=Oswald:[email protected]&display=swap" rel="stylesheet">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.6.0/css/all.min.css">
<link rel="stylesheet" href="styles.css">
<style>
body {
font-family: Arial, sans-serif;
/* display: flex;
justify-content: center;
align-items: center; */
height: 100vh;
overflow-x: hidden;
background-image: linear-gradient(120deg, #fbccff, #d8f9ff, #d4c6ff);
}
.header-container {
width: 100vw;
background-color: #f8f9fa;
padding: 70px 0;
text-align: center;
margin-bottom: 20px;
background-image: url("https://images.unsplash.com/photo-1542273917363-3b1817f69a2d?q=80&w=2074&auto=format&fit=crop&ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D");
background-size: cover;
}
.form-container {
max-width: 400px;
margin: 0 auto;
padding: 20px;
border: 1px solid #dee2e6;
border-radius: 8px;
box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}
.nav-tabs {
display: flex; /* Change to flex for row-wise alignment */
justify-content: center;
background-color: rgba(0, 0, 0, 0.3);
border-bottom: 2px solid #dee2e6;
border-radius: 30px;
margin: auto;
padding: 10px 0; /* Add some padding for better spacing */
}
.nav-item .nav-link {
color: #000;
font-size: 18px;
padding: 10px 20px;
border-radius: 35px;
transition: all 0.4s ease;
}
.nav-link.active {
background-color: white;
color: black;
}
.nav-link:hover {
background-color: rgba(0, 0, 0, 0.5);
color: white;
}
h2 {
text-align: center;
margin-bottom: 5px;
}
button {
width: 45%;
padding: 10px;
background-color: #243447;
color: white;
border: none;
border-radius: 30px;
cursor: pointer;
transition: all 0.4s ease;
}
button:hover {
background-color: #0d1321;
width: 70%;
transform: scale(1.1);
}
.or {
text-align: center;
margin: 10px 0;
color: #343232d4;
}
p {
text-align: center;
color: #343232d4;
}
::placeholder {
color: #3432328a;
opacity: 1;
}
/* Circle styles */
.circle {
height: 24px;
width: 24px;
border-radius: 50%;
background-color: black;
position: fixed;
top: 0;
left: 0;
pointer-events: none;
z-index: 99999999;
transition: transform 0.1s ease-out;
}
#github{
height: auto;
width: 40px;
}
#sub-btn{
padding-left: 110px;
}
/* Mobile devices */
@media (max-width: 768px) {
button {
margin-left: 90px;
}
}
/*navbar*/
header {
background: #333;
color: #fff;
padding: 1rem 0;
position: sticky;
top: 0;
z-index: 1000;
box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}
.navbar {
display: flex;
justify-content: space-between;
align-items: center;
max-width: 1200px;
margin: 0 auto;
padding: 0 1rem;
}
.site-name {
font-size: 24px;
font-weight: 700;
text-transform: uppercase;
letter-spacing: 1px;
}
.navbar a {
color: #bbb;
font-size: 16px;
text-decoration: none;
margin: 0 0.8rem;
transition: color 0.3s ease;
}
.navbar a:hover {
color: #fff;
}
.navbar .auth a {
background: #ffb7fd;
color: #333;
padding: 8px 16px;
border-radius: 5px;
}
.navbar .auth a:hover {
background: #fff;
color: #ffb7fd;
}
/* About Section */
.about-section {
padding: 4rem 1rem;
text-align: center;
}
.about-section h2 {
font-size: 2.5rem;
color: #353047;
margin-bottom: 1rem;
text-align: center;
}
.about-content {
display: flex;
flex-wrap: wrap;
justify-content: center;
gap: 2rem;
margin-top: 2rem;
max-width: 1200px;
margin-left: auto;
margin-right: auto;
}
.about-text{
flex: 1;
max-width: 500px;
padding: 20px;
background: rgba(255, 255, 255, 0.3);
border-radius: 20px;
transition: transform 0.3s;
}
.about-text:hover, .about-image:hover {
transform: scale(1.05);
}
h3 {
font-size: 2rem;
color: #353047;
margin-bottom: 1rem;
text-align: center;
}
.desc {
text-align: center;
max-width: 800px;
margin: 1.5rem auto;
padding: 1rem;
}
.teams {
max-width: 800px;
margin: 1.5rem auto;
padding: 1rem;
text-align: center;
}
.team-member h4 {
font-size: 1.5rem;
margin-bottom: 0.3rem;
text-align: center;
}
.google-btn, .github-btn , .twitter-btn , .instagram-btn {
width: 36px;
height: 36px;
margin: 0 5px;
border-radius: 50%;
transition: transform 0.2s ease;
}
</style>
<style>
/* Circle styles */
.circle {
height: 24px;
width: 24px;
border-radius: 50%;
background-color: black;
position: fixed;
top: 0;
left: 0;
pointer-events: none;
z-index: 99999999;
transition: transform 0.1s ease-out;
}
</style>
</head>
<body>
<!-- Circles -->
<div class="circle"></div>
<div class="circle"></div>
<div class="circle"></div>
<div class="circle"></div>
<div class="circle"></div>
<div class="circle"></div>
<div class="circle"></div>
<div class="circle"></div>
<div class="circle"></div>
<div class="circle"></div>
<div class="circle"></div>
<div class="circle"></div>
<div class="circle"></div>
<div class="circle"></div>
<div class="circle"></div>
<div class="circle"></div>
<div class="circle"></div>
<div class="circle"></div>
<div class="circle"></div>
<div class="circle"></div>
<div class="circle"></div>
<header>
<div class="navbar">
<div class="site-name">Creative Canvas Tool</div>
<nav>
<a href="index.html">Home</a>
<a href="privacy.html">Privacy</a>
<a href="blog.html">Blogs</a>
<a href="Faq.html">FAQ</a>
<a href="contributors.html">Contributors</a>
<a href="testimonial.html">Testimonial</a>
</nav>
<div class="auth">
<a href="signup.html">Sign Up</a>
<a href="login.html">Login</a>
</div>
</div>
</header>
<div id="login" class="form-container mt-5 mb-5">
<h3 class="pb-4">CREATE YOUR ACCOUNT</h3>
<form action="/signup" method="POST" onsubmit="return validatePassword()">
<div id="input">
<input type="text" name="username" placeholder="Username" required>
<i class="fa-solid fa-user"></i>
</div>
<div id="input">
<input type="email" name="email" placeholder="Email" required>
<i class="fa-solid fa-envelope"></i>
</div>
<div id="input">
<input type="password" id="password" name="password" placeholder="Enter Password" required oninput="checkPasswordStrength()" onfocus="showStrengthBar()">
<i class="fa-solid fa-eye" id="togglePassword"></i>
</div>
<div class="password-strength" id="password-strength" style="display: none;">
<span id="strength-text"></span>
<div class="strength-bar">
<div id="strength-bar-fill"></div>
</div>
<br>
</div>
<div id="input">
<input type="password" id="confirm_password" name="confirm_password" placeholder="Confirm Password" required>
<i class="fa-solid fa-eye" id="toggleConfirmPassword"></i>
</div>
<div id="sub-btn">
<button type="submit">Sign Up</button>
</div>
</form>
<div class="or">- OR -</div>
<div id="social" class="mb-3">
<a href="https://www.google.com/"><img class="logo google-btn" src="https://upload.wikimedia.org/wikipedia/commons/thumb/c/c1/Google_%22G%22_logo.svg/120px-Google_%22G%22_logo.svg.png?20230822192911"></a>
<a href="https://github.com/"><img class="logo github-btn"id="github" src="https://upload.wikimedia.org/wikipedia/commons/thumb/c/c2/GitHub_Invertocat_Logo.svg/640px-GitHub_Invertocat_Logo.svg.png"></a>
<a href="https://www.instagram.com/"><img class="logo instagram-btn" src="https://upload.wikimedia.org/wikipedia/commons/thumb/e/e7/Instagram_logo_2016.svg/180px-Instagram_logo_2016.svg.png"></a>
<a href="https://twitter.com/"><img class="logo twitter-btn"id="github" src="https://upload.wikimedia.org/wikipedia/commons/thumb/6/6f/Logo_of_Twitter.svg/180px-Logo_of_Twitter.svg.png" width="10px" ></a>
</div>
</div>
<script src="https://cdnjs.cloudflare.com/ajax/libs/zxcvbn/4.4.2/zxcvbn.js"></script>
<script>
function checkPasswordStrength() {
const password = document.getElementById('password').value;
const strengthBarFill = document.getElementById('strength-bar-fill');
const strengthText = document.getElementById('strength-text');
const result = zxcvbn(password);
const strengthLevels = ["Very Weak", "Weak", "Medium", "Strong", "Very Strong"];
strengthText.textContent = strengthLevels[result.score];
const strengthPercentage = (result.score + 1) * 25;
strengthBarFill.style.width = strengthPercentage + '%';
}
function showStrengthBar() {
document.getElementById('password-strength').style.display = 'block';
}
function validatePassword() {
const password = document.getElementById('password').value;
const confirmPassword = document.getElementById('confirm_password').value;
if (password !== confirmPassword) {
alert("Passwords do not match!");
return false;
}
return true;
}
</script>
<script src="./src/bootstrap/js/bootstrap.bundle.min.js"></script>
<style>
.twitter-btn , .github-btn{
width: 10px;
height: auto;
}
</style>
<script>
// Coordinates for the cursor
const coords = { x: 0, y: 0 };
const circles = document.querySelectorAll(".circle");
// Colors for the circles
const colors = [
"#ffb56b", "#fdaf69", "#f89d63", "#f59761", "#ef865e", "#ec805d",
"#e36e5c", "#df685c", "#d5585c", "#d1525c", "#c5415d", "#c03b5d",
"#b22c5e", "#ac265e", "#9c155f", "#950f5f", "#830060", "#7c0060",
"#680060", "#60005f", "#48005f", "#3d005e"
];
// Assign colors and initial position to each circle
circles.forEach(function (circle, index) {
circle.x = 0;
circle.y = 0;
circle.style.backgroundColor = colors[index % colors.length];
});
// Update the coordinates when the mouse moves
window.addEventListener("mousemove", function (e) {
coords.x = e.clientX;
coords.y = e.clientY;
});
// Animation function to move the circles
function animateCircles() {
let x = coords.x;
let y = coords.y;
circles.forEach(function (circle, index) {
// Update the position and scale of each circle
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;
// Get the next circle in the sequence
const nextCircle = circles[index + 1] || circles[0];
x += (nextCircle.x - x) * 0.3;
y += (nextCircle.y - y) * 0.3;
});
// Repeat the animation
requestAnimationFrame(animateCircles);
}
// Start the animation
animateCircles();
</script>
</body>
</html>