forked from vishanurag/Canvas-Editor
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsignup.html
254 lines (239 loc) · 9.89 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
<!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="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">
<style>
body {
font-family: Arial, sans-serif;
background-color: #f7f7f7;
display: flex;
justify-content: center;
align-items: center;
height: 100vh;
overflow-x: hidden;
}
.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; /* Set a max width for the form */
margin: 0 auto; /* Center the form on the page */
padding: 20px;
border: 1px solid #dee2e6; /* Optional: Adds a border to the form */
border-radius: 8px; /* Optional: Adds rounded corners */
box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1); /* Optional: Adds a shadow for depth */
}
.nav-tabs {
justify-content: center;
background-color: #ffffff;
border-bottom: 2px solid #dee2e6; /* Border for the nav-tabs */
}
.nav-item .nav-link {
color: #000;
font-size: 18px;
padding: 10px 20px;
border-radius: 0;
transition: background-color 0.3s, color 0.3s;
}
.nav-link.active {
background-color: #3abe57;
color: white;
}
.nav-link:hover {
background-color: #3abe57;
color: white;
}
h2 {
text-align: center;
margin-bottom: 5px;
}
button {
width: 100%;
padding: 10px;
background-color: #28a745;
color: white;
border: none;
border-radius: 4px;
cursor: pointer;
}
button:hover {
background-color: #218838;
}
.or {
text-align: center;
margin: 10px 0;
color: white;
}
p {
text-align: center;
color: white;
}
</style>
</head>
<body>
<!-- preloader -->
<div id="preloader">
<div class="loader">
<svg viewBox="0 0 80 80">
<circle id="test" cx="40" cy="40" r="32"></circle>
</svg>
</div>
<div class="loader triangle">
<svg viewBox="0 0 86 80">
<polygon points="43 8 79 72 7 72"></polygon>
</svg>
</div>
<div class="loader">
<svg viewBox="0 0 80 80">
<rect x="8" y="8" width="64" height="64"></rect>
</svg>
</div>
<!-- dribbble -->
<a class="dribbble" href="https://dribbble.com/shots/5878367-Loaders" target="_blank"><img src="https://cdn.dribbble.com/assets/dribbble-ball-mark-2bd45f09c2fb58dbbfb44766d5d1d07c5a12972d602ef8b32204d28fa3dda554.svg" alt=""></a>
</div>
<div class="header-container">
<div class="header">
<p class="lead" style="color: #000;">Design and create stunning visuals effortlessly!</p>
</div>
<div class="row">
<ul class="nav nav-tabs">
<li class="nav-item">
<a class="nav-link active" aria-current="page" href="index.html">Home</a>
</li>
<li class="nav-item">
<a class="nav-link" href="about.html">About</a>
</li>
<li class="nav-item">
<a class="nav-link" href="#">Review</a>
</li>
<li class="nav-item">
<a class="nav-link" href="#">Blog</a>
</li>
<li class="nav-item">
<a class="nav-link" href="#">Sign Up</a></li>
<li class="nav-item">
<a class="nav-link" href="login.html">Login</a>
</li>
</ul>
</div>
<div id="login" class="form-container mt-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>
<!-- Password Input Block with Strength Meter -->
<div id="input">
<input type="password" id="password" name="password" placeholder="Enter Password" required oninput="checkPasswordStrength()" onfocus="showStrengthBar()">
<i class="fa-solid fa-lock"></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>
<!-- Confirm Password Input Block -->
<div id="input">
<input type="password" id="confirm_password" name="confirm_password" placeholder="Confirm Password" required>
<i class="fa-solid fa-lock"></i>
</div>
<!-- Importing zxcvbn -->
<script src="https://cdnjs.cloudflare.com/ajax/libs/zxcvbn/4.4.2/zxcvbn.js"></script>
<!-- Script for Password Strength Check -->
<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);
// Strength levels based on zxcvbn score
const strengthLevels = ["Very Weak", "Weak", "Medium", "Strong", "Very Strong"];
strengthText.textContent = strengthLevels[result.score];
// Update the strength bar's width and color based on the score
const strengthPercentage = (result.score + 1) * 20; // Each level gets 20% width
strengthBarFill.style.width = strengthPercentage + "%";
// Apply different classes for coloring the strength bar (optional customization)
const barClasses = ['very-weak', 'weak', 'medium', 'strong', 'very-strong'];
strengthBarFill.className = barClasses[result.score];
}
function showStrengthBar() {
const strengthBar = document.getElementById('password-strength');
strengthBar.style.display = 'block'; // Show the strength bar when the user focuses on the password field
}
</script>
<!-- Styles for the Strength Meter -->
<style>
.password-strength {
margin-top: 10px;
}
.strength-bar {
width: 100%;
height: 10px;
background-color: #e0e0e0;
border-radius: 4px;
overflow: hidden;
}
#strength-bar-fill {
height: 100%;
width: 0; /* Default width */
transition: width 0.3s ease;
background-color: #ff4d4d; /* Default color for very weak */
}
/* Classes for strength levels */
.very-weak { background-color: #ff4d4d; }
.weak { background-color: #ff9933; }
.medium { background-color: #ffcc33; }
.strong { background-color: #99cc33; }
.very-strong { background-color: #33cc33; }
</style>
<button type="submit">Sign Up</button>
</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"
src="https://upload.wikimedia.org/wikipedia/commons/thumb/c/c2/GitHub_Invertocat_Logo.svg/640px-GitHub_Invertocat_Logo.svg.png">
</a>
</div>
<p>Already have an account? <a href="login.html">Log in</a></p> <!-- This should link to login.html -->
</div>
</div>
<script>
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\Scripts\preloader.js"></script>
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/5.3.0/js/bootstrap.bundle.min.js"></script>
</body>
</html>