-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsignup.html
More file actions
58 lines (44 loc) · 2.01 KB
/
Copy pathsignup.html
File metadata and controls
58 lines (44 loc) · 2.01 KB
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=no">
<title>Create Account | Smart Study Scheduler</title>
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link
href="https://fonts.googleapis.com/css2?family=Syne:wght@400;500;600;700;800&family=DM+Sans:ital,opsz,wght@0,9..40,300;0,9..40,400;0,9..40,500;0,9..40,600;1,9..40,300&display=swap"
rel="stylesheet">
<link rel="stylesheet" href="style.css">
<script src="script.js" defer></script>
</head>
<body>
<div class="auth-container">
<h2>Create Account</h2>
<p class="auth-tagline">Start optimizing your study routine today</p>
<form id="signupForm">
<div class="form-group">
<label for="reg-username">Username</label>
<input type="text" id="reg-username" placeholder="Choose a unique username" required
autocomplete="username">
</div>
<div class="form-group">
<label for="reg-password">Password</label>
<input type="password" id="reg-password" placeholder="Create a strong password" required
autocomplete="new-password">
</div>
<div class="form-group">
<label for="reg-confirm-password">Confirm Password</label>
<input type="password" id="reg-confirm-password" placeholder="Repeat your password" required
autocomplete="new-password">
</div>
<button type="submit" class="btn btn-auth-submit">Sign Up</button>
<div id="auth-message" class="auth-message"></div>
</form>
<div class="switch-link">
<p>Already have an account? <a href="login.html">Sign In</a></p>
</div>
</div>
<div id="toast" class="toast"></div>
</body>
</html>