-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathforgot.html
More file actions
27 lines (26 loc) · 962 Bytes
/
forgot.html
File metadata and controls
27 lines (26 loc) · 962 Bytes
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
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="./login.css">
<meta name="description" content="Simple Forgot Password Page Using HTML and CSS">
<meta name="keywords" content="forgot password page, basic html and css">
<title>AASHA</title>
</head>
<body>
<div class="row">
<h1>Forgot Password</h1>
<h6 class="information-text">Enter your registered email to reset your password.</h6>
<div class="form-group">
<form action="#" class="login">
<div class="field">
<input type="text" placeholder="Email Address" required>
</div>
<p><label for="username">Email</label></p>
<button onclick="showSpinner()">Reset Password</button>
</div>
<div class="footer">
<h5>New here? <a href="login.html">Sign Up.</a></h5>
<h5>Already have an account? <a href="login.html">Log In.</a></h5>
</div>
</div>
</body>