-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathForgot_Password.html
More file actions
42 lines (41 loc) · 1.33 KB
/
Copy pathForgot_Password.html
File metadata and controls
42 lines (41 loc) · 1.33 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
39
40
41
42
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<title>Forgot Password</title>
<!-- Bootstrap CSS -->
<link
href="https://cdn.jsdelivr.net/npm/bootstrap@5.3.0/dist/css/bootstrap.min.css"
rel="stylesheet"
/>
<!-- Custom CSS -->
<link rel="stylesheet" href="css/forgot-password.css" />
</head>
<body>
<div class="forgot-password-container">
<div class="card">
<h4 class="mb-3 text-center">Forgot Password</h4>
<form id="forgot-password-form" novalidate>
<div class="mb-3">
<label for="email" class="form-label">Enter your registered email</label>
<input
type="email"
class="form-control"
id="email"
placeholder="name@example.com"
required
/>
<div class="invalid-feedback">Please enter a valid email address.</div>
</div>
<button type="submit" class="btn btn-primary w-100">Send Reset Link</button>
<div id="form-message" class="form-message"></div>
</form>
</div>
</div>
<!-- Bootstrap JS Bundle -->
<script src="https://cdn.jsdelivr.net/npm/bootstrap@5.3.0/dist/js/bootstrap.bundle.min.js"></script>
<!-- Custom JS -->
<script src="js/forgot-password.js"></script>
</body>
</html>