-
Notifications
You must be signed in to change notification settings - Fork 0
/
forget.html
47 lines (41 loc) · 1.24 KB
/
forget.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
<!DOCTYPE html>
<html>
<head>
<title>Password Reset</title>
<link rel="icon" href="./img2/icon.jpg" type="image/x-icon">
<link rel="stylesheet" href="css/base.css">
<link rel="stylesheet" href="css/forget-password.css">
</head>
<body>
<div class="navbar">
<a href="home.html">HOME</a>
<a href="show.html">HISTORY</a>
<a href="museum.html">MUSEUM</a>
<a href="DIY.html">DIY</a>
<a href="login.html">LOGIN</a>
</div>
<div class="container">
<h2>Forgot Password</h2>
<form id="forgot-password-form">
<div class="form-group">
<label for="username">Username</label>
<input type="text" id="username" required>
</div>
<div class="form-group">
<label for="email">Email</label>
<input type="email" id="email" required>
</div>
<div class="form-group">
<label for="phone">Phone</label>
<input type="text" id="phone" required>
</div>
<button type="submit" class="btn">Reset Password</button>
</form>
<a href="login.html">
<button type="back" class="btn">BACK</button>
</a>
</div>
<div class="footer">@zjl,zcf</div>
<script src="js/forget-password.js"></script>
</body>
</html>