103 lines
3.5 KiB
JavaScript
103 lines
3.5 KiB
JavaScript
import { useState } from 'react';
|
|
import { forgotPassword } from '../../services/api';
|
|
import { Link } from 'react-router-dom';
|
|
|
|
export default function ForgotPassword() {
|
|
const [email, setEmail] = useState('');
|
|
const [status, setStatus] = useState({ type: '', message: '' });
|
|
const [loading, setLoading] = useState(false);
|
|
|
|
const handleSubmit = async (e) => {
|
|
e.preventDefault();
|
|
setLoading(true);
|
|
setStatus({ type: '', message: '' });
|
|
|
|
try {
|
|
await forgotPassword(email);
|
|
setStatus({
|
|
type: 'success',
|
|
message: 'If an account exists with this email, you will receive password reset instructions.'
|
|
});
|
|
setEmail('');
|
|
} catch (error) {
|
|
setStatus({
|
|
type: 'error',
|
|
message: 'Failed to process request. Please try again.'
|
|
});
|
|
} finally {
|
|
setLoading(false);
|
|
}
|
|
};
|
|
|
|
return (
|
|
<div className="min-h-screen flex items-center justify-center bg-gradient-to-br from-primary-900 to-primary-800 py-12 px-4 sm:px-6 lg:px-8">
|
|
<div className="max-w-md w-full space-y-8 bg-primary-800/50 backdrop-blur-lg p-8 rounded-xl shadow-xl">
|
|
<div>
|
|
<h2 className="mt-6 text-center text-3xl font-extrabold text-white">
|
|
Forgot your password?
|
|
</h2>
|
|
<p className="mt-2 text-center text-sm text-neutral-400">
|
|
Enter your email address and we'll send you instructions to reset your password.
|
|
</p>
|
|
</div>
|
|
|
|
<form className="mt-8 space-y-6" onSubmit={handleSubmit}>
|
|
{status.message && (
|
|
<div
|
|
className={`p-4 rounded-lg ${
|
|
status.type === 'success'
|
|
? 'bg-green-500/10 border border-green-500/20 text-green-200'
|
|
: 'bg-red-500/10 border border-red-500/20 text-red-200'
|
|
}`}
|
|
>
|
|
{status.message}
|
|
</div>
|
|
)}
|
|
|
|
<div>
|
|
<label htmlFor="email" className="sr-only">
|
|
Email address
|
|
</label>
|
|
<input
|
|
id="email"
|
|
name="email"
|
|
type="email"
|
|
autoComplete="email"
|
|
required
|
|
value={email}
|
|
onChange={(e) => setEmail(e.target.value)}
|
|
className="appearance-none relative block w-full px-3 py-2 border
|
|
border-primary-600 bg-primary-700/30 placeholder-neutral-400
|
|
text-white rounded-lg focus:outline-none focus:ring-primary-500
|
|
focus:border-primary-500 focus:z-10 sm:text-sm"
|
|
placeholder="Email address"
|
|
/>
|
|
</div>
|
|
|
|
<div>
|
|
<button
|
|
type="submit"
|
|
disabled={loading}
|
|
className="group relative w-full flex justify-center py-2 px-4 border
|
|
border-transparent text-sm font-medium rounded-lg text-white
|
|
bg-primary-600 hover:bg-primary-700 focus:outline-none focus:ring-2
|
|
focus:ring-offset-2 focus:ring-primary-500 disabled:opacity-50
|
|
disabled:cursor-not-allowed transition-colors"
|
|
>
|
|
{loading ? 'Sending...' : 'Send Reset Instructions'}
|
|
</button>
|
|
</div>
|
|
|
|
<div className="text-center">
|
|
<Link
|
|
to="/login"
|
|
className="font-medium text-primary-400 hover:text-primary-300 transition-colors"
|
|
>
|
|
Back to login
|
|
</Link>
|
|
</div>
|
|
</form>
|
|
</div>
|
|
</div>
|
|
);
|
|
}
|