-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathforget-password.html
24 lines (24 loc) · 970 Bytes
/
forget-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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<link rel="stylesheet" href="./css/style.css" />
<link rel="stylesheet" href="./css/index.css" />
<title>Forgot Password</title>
</head>
<body>
<h1>Multi-Objective Decision Making Application</h1>
<div class="container">
<h1 class="heading">Forgot Password</h1>
<p>Enter your email address below, and we'll send you a password reset link.</p>
<form id="forgot_password_form">
<input id="email" type="email" placeholder="Email" required />
<input type="submit" class="btn btn-primary" value="Reset Password" />
</form>
<a class="link" href="signin.html">Back to Sign In</a><br /><br />
<a class="link" href="./pages/signup.html">Create New Account</a>
</div>
<script src="./js/forgot-password.js" type="module"></script>
</body>
</html>