-
Notifications
You must be signed in to change notification settings - Fork 1
/
forgotpassword.html
33 lines (30 loc) · 1.13 KB
/
forgotpassword.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
25
26
27
28
29
30
31
32
33
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Forgot Password - Connectify</title>
<link rel="stylesheet" href="forgotpassword.css">
</head>
<body>
<div class="container">
<div class="forgot-password-container">
<h2>Forgot Your Password?</h2>
<p>Please enter your email address to receive a password reset link.</p>
<form action="#" method="post">
<div class="form-group">
<label for="email">Email:</label>
<input type="email" id="email" name="email" placeholder="Enter your email" required>
</div>
<div class="form-group">
<button type="submit">Send Reset Link</button>
</div>
</form>
<div class="links">
<p><a href="login.html">Back to Login</a></p>
<p>Don't have an account? <a href="signup.html">Sign Up</a></p>
</div>
</div>
</div>
</body>
</html>