-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpassword_reset.html
39 lines (39 loc) · 1.19 KB
/
password_reset.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Reset Password</title>
<link rel="stylesheet" href="./password_reset.css" />
<link
rel="stylesheet"
href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css"
/>
</head>
<body>
<section>
<div class="main">
<h1>Reset Password</h1>
<p>Enter a new password different from the previous one.</p>
<div class="container">
<form>
<label for="password">Password:</label>
<input type="password" placeholder="******" id="password" name="password" required />
<label for="confirmPassword">Confirm Password:</label>
<input
type="password"
placeholder="******"
id="confirmPassword"
name="confirmPassword"
required
/>
<p class="hint">Hint text</p>
<a href="./ERROR & CONGRATULATION/congarulatory.html">
<button type="submit">Continue</button>
</a>
</form>
</div>
</div>
</section>
</body>
</html>