-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathforgot.html
More file actions
38 lines (38 loc) · 1.35 KB
/
forgot.html
File metadata and controls
38 lines (38 loc) · 1.35 KB
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Forgot Password</title>
<style type="text/css">
body{
background-image: url("Future\ \(12\).png");
background-size: 100%;
}
</style>
</head>
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta name="description" content="Simple Forgot Password Page Using HTML and CSS">
<meta name="keywords" content="forgot password page, basic html and css">
<title>Forgot Password Page - HTML + CSS</title>
</head>
<link rel="stylesheet" href="forgot.css">
<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">
<input type="email" name="user_email" id="user_email">
<p><label for="username">Email</label></p>
<button onclick="showSpinner()">Reset Password</button>
</div>
<div class="footer">
<h5>New here? <a href="http://127.0.0.1:5501/signup-stu.html">Sign Up as Student </a></h5>
<h5> <a href="http://127.0.0.1:5501/signup-age.html">Sign Up as Agent</a></h5>
<h5>Already have an account? <a href="http://127.0.0.1:5501/login.html">Log In.</a></h5>
</div>
</body>
</html>