114 lines
3.4 KiB
TypeScript
114 lines
3.4 KiB
TypeScript
"use client";
|
|
|
|
import { useState } from "react";
|
|
import Link from "next/link";
|
|
|
|
export default function ForgotPasswordPage() {
|
|
const [email, setEmail] = useState('');
|
|
const [loading, setLoading] = useState(false);
|
|
const [submitted, setSubmitted] = useState(false);
|
|
const [error, setError] = useState('');
|
|
|
|
const handleSubmit = async (e: React.FormEvent) => {
|
|
e.preventDefault();
|
|
setLoading(true);
|
|
setError('');
|
|
|
|
try {
|
|
const response = await fetch('/api/auth/forgot-password', {
|
|
method: 'POST',
|
|
headers: { 'Content-Type': 'application/json' },
|
|
body: JSON.stringify({ email }),
|
|
});
|
|
|
|
const data = await response.json();
|
|
|
|
if (!response.ok) {
|
|
throw new Error(data.error || 'Failed to send reset email');
|
|
}
|
|
|
|
setSubmitted(true);
|
|
} catch (err: any) {
|
|
setError(err.message || 'An error occurred');
|
|
} finally {
|
|
setLoading(false);
|
|
}
|
|
};
|
|
|
|
if (submitted) {
|
|
return (
|
|
<div className="min-h-screen flex items-center justify-center bg-gray-100 px-4">
|
|
<div className="max-w-md w-full bg-white rounded-lg shadow-md p-8">
|
|
<div className="text-center">
|
|
<div className="text-5xl mb-4">✅</div>
|
|
<h2 className="text-2xl font-bold text-gray-900 mb-2">
|
|
Check Your Email
|
|
</h2>
|
|
<p className="text-gray-600 mb-6">
|
|
If an account exists with the email <strong>{email}</strong>, you will receive a password reset link shortly.
|
|
</p>
|
|
<Link
|
|
href="/login"
|
|
className="text-blue-600 hover:text-blue-700 font-medium"
|
|
>
|
|
← Back to Login
|
|
</Link>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
);
|
|
}
|
|
|
|
return (
|
|
<div className="min-h-screen flex items-center justify-center bg-gray-100 px-4">
|
|
<div className="max-w-md w-full bg-white rounded-lg shadow-md p-8">
|
|
<h2 className="text-2xl font-bold text-gray-900 mb-2">
|
|
Forgot Password
|
|
</h2>
|
|
<p className="text-gray-600 mb-6">
|
|
Enter your email address and we'll send you a link to reset your password.
|
|
</p>
|
|
|
|
{error && (
|
|
<div className="mb-4 p-3 bg-red-100 text-red-800 rounded">
|
|
{error}
|
|
</div>
|
|
)}
|
|
|
|
<form onSubmit={handleSubmit}>
|
|
<div className="mb-6">
|
|
<label className="block text-sm font-medium text-gray-700 mb-2">
|
|
Email Address
|
|
</label>
|
|
<input
|
|
type="email"
|
|
required
|
|
value={email}
|
|
onChange={(e) => setEmail(e.target.value)}
|
|
className="w-full px-4 py-2 border border-gray-300 rounded-md focus:outline-none focus:ring-2 focus:ring-blue-500"
|
|
placeholder="your-email@example.com"
|
|
/>
|
|
</div>
|
|
|
|
<button
|
|
type="submit"
|
|
disabled={loading}
|
|
className="w-full px-4 py-2 bg-blue-600 text-white rounded-md hover:bg-blue-700 disabled:bg-gray-400 font-medium"
|
|
>
|
|
{loading ? 'Sending...' : 'Send Reset Link'}
|
|
</button>
|
|
|
|
<div className="mt-4 text-center">
|
|
<Link
|
|
href="/login"
|
|
className="text-blue-600 hover:text-blue-700 text-sm"
|
|
>
|
|
← Back to Login
|
|
</Link>
|
|
</div>
|
|
</form>
|
|
</div>
|
|
</div>
|
|
);
|
|
}
|