-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathforgot_password.html
43 lines (41 loc) · 1.43 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
<!DOCTYPE html>
<html>
<head>
<title>Forgot Password</title>
<link rel="stylesheet" href="style.css">
<link href="https://fonts.googleapis.com/css?family=Poppins:600&display=swap" rel="stylesheet">
<script src="https://kit.fontawesome.com/a81368914c.js"></script>
<meta name="viewport" content="width=device-width, initial-scale=1">
</head>
<body>
<div class="container">
<img src="img/forgot_pass.svg">
<div class="login-content">
<form action="index.html">
<h2 class="title">Reset Password</h2>
<div class="input-div one">
<div class="i">
<i class="fas fa-lock"></i>
</div>
<div class="div">
<h5>Password</h5>
<input type="text" class="input" required>
</div>
</div>
<div class="input-div pass">
<div class="i">
<i class="fas fa-lock"></i>
</div>
<div class="div">
<h5>Confirm Password</h5>
<input type="password" class="input" required>
</div>
</div>
<u><a href="index.html">Back to Log In</a></u>
<input type="submit" class="btn" value="Change Password" /><br>
</form>
</div>
</div>
<script type="text/javascript" src="main.js"></script>
</body>
</html>