File size: 1,105 Bytes
d0a6b4f
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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">
  <title>Forgot Password</title>
  <script src="https://cdn.tailwindcss.com"></script>
</head>
<body class="min-h-screen bg-gradient-to-br from-sky-500 to-blue-600 flex items-center justify-center">

  <div class="bg-white w-full max-w-md rounded-2xl shadow-xl p-8">
    <h2 class="text-3xl font-bold text-center text-gray-800">Forgot Password</h2>
    <p class="text-center text-gray-500 mt-2">We’ll send an OTP to reset it</p>

    <form method="POST" class="mt-6 space-y-4">
      <input type="email" name="email" placeholder="Enter your email"

        required

        class="w-full px-4 py-3 rounded-lg border focus:ring-2 focus:ring-sky-500 outline-none">

      <button

        class="w-full bg-sky-600 hover:bg-sky-700 text-white py-3 rounded-lg font-semibold transition">
        Send OTP
      </button>
    </form>

    <p class="text-center text-sm text-gray-600 mt-4">
      Back to
      <a href="/auth/login" class="text-sky-600 hover:underline">Login</a>
    </p>
  </div>

</body>
</html>