-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathforgot_password.html
More file actions
30 lines (30 loc) · 1.29 KB
/
Copy pathforgot_password.html
File metadata and controls
30 lines (30 loc) · 1.29 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0"/>
<title>Reset Password</title>
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.3.2/dist/css/bootstrap.min.css" rel="stylesheet" />
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/bootstrap-icons@1.11.3/font/bootstrap-icons.min.css" />
<link rel="stylesheet" href="css/styles.css" />
</head>
<body>
<div class="container d-flex align-items-center justify-content-center vh-100">
<div class="auth-container">
<div class="text-center">
<img src="https://getbootstrap.com/docs/5.3/assets/brand/bootstrap-logo.svg" alt="Logo" width="50" />
<h3 class="mt-2">Reset Password</h3>
<p class="text-muted">Enter your email to receive a password reset link.</p>
</div>
<form>
<div class="mb-3">
<label class="form-label">Email Address</label>
<input type="email" class="form-control" placeholder="Enter your email" required />
</div>
<button type="submit" class="btn btn-primary btn-auth w-100">Send Reset Link</button>
</form>
<p class="text-center mt-3"><a href="login.html" class="text-decoration-none">Back to Login</a></p>
</div>
</div>
</body>
</html>