-
Notifications
You must be signed in to change notification settings - Fork 0
/
forgot_password.html
74 lines (62 loc) · 3.05 KB
/
forgot_password.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="main.css">
<script src="https://code.jquery.com/jquery-3.6.1.js"></script>
<script type="module" src="js/navbar.js"></script>
<script type="module" src="js/forgot_password.js"></script>
<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=Work+Sans:wght@600&display=swap" rel="stylesheet">
<link href="https://fonts.googleapis.com/css2?family=Work+Sans:wght@200&display=swap" rel="stylesheet">
<title>Alexandria - Reset Account Password</title>
</head>
<body>
<!-- navbar for website navigation -->
<div class="navbar">
<div class="container">
<a class="logo" href="index.html">Alexandria</a>
<ul class="left-nav">
<span id="other-left-navbar-items-toggle"></span>
<li id="login-or-logout-toggle"></li>
</ul>
<ul class="right-nav">
<li id="profile-username-toggle"></li>
</ul>
</div>
</div>
<!-- header -->
<header>
<h1>Reset Account Password</h1>
</header>
<!-- account information section -->
<section class="account_info">
<div class="container">
<form action="#">
<label id="email" for="email">Enter your email</label><br id="email-label">
<label class="desc" id="email-desc" for="email">A password reset code will be sent to this email if it's associated with an active account</label>
<input type="email" id="email" value=""><br id="email-input">
<input type="submit" class="submit-button" id="submit-email-button" value="Send Reset Code">
<p id="submit-email-message"></p>
<label id="reset-code" for="reset-code">Enter reset code</label><br>
<label class="desc" id="reset-code-desc" for="reset-code">Enter the password reset token that was sent to your email</label>
<input type="reset-code" id="reset-code" value=""><br>
<label id="password" for="password">Create new password</label><br>
<label class="desc" id="password-desc" for="password">Password must have at least 8 characters long, at least 1 uppercase and 1 lowercase letter, at least 1 number</label>
<input type="password" id="password" value=""><br>
<label id="password-confirm" for="password-confirm">Confirm new password</label><br>
<label class="desc" id="password-confirm-desc" for="password-confirm">Re-enter new password</label>
<input type="password" id="password-confirm" value=""><br>
<input type="submit" class="submit-button" id="submit-password-button" value="Change Password">
<p id="submit-password-message"></p>
</form>
</div>
</section>
<div class = "alexandria_image">
<img src="/images/book.png">
</div>
</body>
</html>