|
|
<!DOCTYPE html>
|
|
|
<html lang="en">
|
|
|
<head>
|
|
|
<meta charset="UTF-8">
|
|
|
<title>Reset Password</title>
|
|
|
<script src="https://cdn.tailwindcss.com"></script>
|
|
|
</head>
|
|
|
<body class="min-h-screen bg-gradient-to-br from-fuchsia-500 to-pink-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">Reset Password</h2>
|
|
|
<p class="text-center text-gray-500 mt-2">OTP verification required</p>
|
|
|
|
|
|
<form method="POST" class="mt-6 space-y-4">
|
|
|
<input type="text" name="otp" placeholder="OTP"
|
|
|
required
|
|
|
class="w-full px-4 py-3 rounded-lg border focus:ring-2 focus:ring-pink-500 outline-none">
|
|
|
|
|
|
<input type="password" name="password" placeholder="New Password"
|
|
|
required
|
|
|
class="w-full px-4 py-3 rounded-lg border focus:ring-2 focus:ring-pink-500 outline-none">
|
|
|
|
|
|
<button
|
|
|
class="w-full bg-pink-600 hover:bg-pink-700 text-white py-3 rounded-lg font-semibold transition">
|
|
|
Reset Password
|
|
|
</button>
|
|
|
</form>
|
|
|
</div>
|
|
|
|
|
|
</body>
|
|
|
</html>
|
|
|
|