-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathresetpassword.html
31 lines (29 loc) · 1.22 KB
/
resetpassword.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Forgot?</title>
<link rel="stylesheet" href="resetpassword.css">
<link rel="shortcut icon" href="./image/user.png" type="image/x-icon">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.15.2/css/all.min.css"/>
</head>
<body>
<div class="container">
<div class="whole">
<div class="title"><span>RESET PASSWORD</span></div>
<form action="#">
<p>Enter the Email address or Phone Number associated with your account and we'll send you a link to reset your password.</p>
<div class="row">
<i class="fas fa-user"></i>
<input type="text" placeholder="Email or Phone" required>
</div>
<div class="row botton">
<input type="submit" value="Continue">
</div>
<div class="signup_link">Don't have an account? <a href="./signup.html">Signup Now!</a></div>
</form>
</div>
</div>
</body>
</html>