-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpassword.html
30 lines (24 loc) · 1.36 KB
/
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
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>Forgot Password</title>
<script src="https://cdn.tailwindcss.com"></script>
</head>
<body class="bg-blue-500 flex items-center justify-center h-screen">
<div class="bg-white p-8 rounded-lg shadow-lg w-full max-w-md">
<h2 class="text-2xl font-bold text-center text-gray-700 mb-6">Forgot Your Password?</h2>
<p class="text-center text-gray-600 mb-6">Enter your email address below and we will send you a link to reset your password.</p>
<form action="/submit_forgot_password" method="POST" class="space-y-6">
<div>
<label for="email" class="block text-gray-600 font-medium">Email Address</label>
<input type="email" id="email" name="email" placeholder="Enter your email" required
class="w-full px-4 py-2 mt-2 border border-gray-300 rounded-lg focus:outline-none focus:ring-2 focus:ring-indigo-500">
</div>
<button type="submit" class="w-full py-2 bg-indigo-600 text-white rounded-lg hover:bg-indigo-700 focus:outline-none focus:ring-2 focus:ring-indigo-500">Send Reset Link</button>
</form>
<p class="text-center text-gray-600 mt-4">Remember your password? <a href="login.html" class="text-indigo-600 hover:text-indigo-700">Log in here</a></p>
</div>
</body>
</html>