93 lines
3.3 KiB
TypeScript
93 lines
3.3 KiB
TypeScript
'use client';
|
|
|
|
import { useState } from 'react';
|
|
import Link from 'next/link';
|
|
import { useAuth } from '../../context/AuthContext';
|
|
|
|
export default function ResetPasswordPage() {
|
|
const [email, setEmail] = useState('');
|
|
const [error, setError] = useState('');
|
|
const [message, setMessage] = useState('');
|
|
const [loading, setLoading] = useState(false);
|
|
const { resetPassword } = useAuth();
|
|
|
|
const handleSubmit = async (e: React.FormEvent) => {
|
|
e.preventDefault();
|
|
try {
|
|
setError('');
|
|
setMessage('');
|
|
setLoading(true);
|
|
await resetPassword(email);
|
|
setMessage('Check your email for password reset instructions');
|
|
} catch (error: any) {
|
|
setError(error.message || 'Failed to reset password');
|
|
} finally {
|
|
setLoading(false);
|
|
}
|
|
};
|
|
|
|
return (
|
|
<div className="min-h-screen flex items-center justify-center bg-gradient-to-b from-background to-background/95 px-4">
|
|
<div className="max-w-md w-full space-y-8 bg-white/5 backdrop-blur-sm p-8 rounded-2xl shadow-xl">
|
|
<div>
|
|
<h2 className="mt-6 text-center text-3xl font-bold bg-clip-text text-transparent bg-gradient-to-r from-purple-600 to-pink-600">
|
|
Reset your password
|
|
</h2>
|
|
<p className="mt-2 text-center text-sm text-foreground/60">
|
|
Enter your email address and we'll send you a link to reset your password.
|
|
</p>
|
|
</div>
|
|
|
|
{error && (
|
|
<div className="bg-red-500/10 border border-red-500/20 text-red-500 px-4 py-3 rounded-lg text-sm">
|
|
{error}
|
|
</div>
|
|
)}
|
|
|
|
{message && (
|
|
<div className="bg-green-500/10 border border-green-500/20 text-green-500 px-4 py-3 rounded-lg text-sm">
|
|
{message}
|
|
</div>
|
|
)}
|
|
|
|
<form className="mt-8 space-y-6" onSubmit={handleSubmit}>
|
|
<div>
|
|
<label htmlFor="email" className="block text-sm font-medium text-foreground/80">
|
|
Email address
|
|
</label>
|
|
<input
|
|
id="email"
|
|
name="email"
|
|
type="email"
|
|
autoComplete="email"
|
|
required
|
|
value={email}
|
|
onChange={(e) => setEmail(e.target.value)}
|
|
className="mt-1 block w-full px-4 py-3 bg-background/50 border border-foreground/10 rounded-lg focus:ring-2 focus:ring-purple-500 focus:border-transparent transition-colors"
|
|
placeholder="Enter your email"
|
|
/>
|
|
</div>
|
|
|
|
<div>
|
|
<button
|
|
type="submit"
|
|
disabled={loading}
|
|
className="w-full flex justify-center py-3 px-4 border border-transparent rounded-lg shadow-sm text-sm font-medium text-white bg-gradient-to-r from-purple-600 to-pink-600 hover:opacity-90 focus:outline-none focus:ring-2 focus:ring-offset-2 focus:ring-purple-500 transition-opacity disabled:opacity-50 disabled:cursor-not-allowed"
|
|
>
|
|
{loading ? 'Sending reset link...' : 'Send reset link'}
|
|
</button>
|
|
</div>
|
|
</form>
|
|
|
|
<div className="text-center text-sm">
|
|
<Link
|
|
href="/auth/login"
|
|
className="text-purple-600 hover:text-purple-500 transition-colors"
|
|
>
|
|
Back to sign in
|
|
</Link>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
);
|
|
}
|