88203869d5
- Add POST /api/auth/password-reset endpoint to validate email and process reset requests - Wire up password reset form to call API instead of stubbing success - This enables proper password reset flow for Issue #10
124 lines
4.0 KiB
TypeScript
124 lines
4.0 KiB
TypeScript
"use client"
|
|
|
|
import Link from "next/link"
|
|
import { useState } from "react"
|
|
|
|
export default function PasswordResetPage() {
|
|
const [email, setEmail] = useState("")
|
|
const [sent, setSent] = useState(false)
|
|
const [error, setError] = useState("")
|
|
const [loading, setLoading] = useState(false)
|
|
|
|
async function handleSubmit(e: React.FormEvent<HTMLFormElement>) {
|
|
e.preventDefault()
|
|
setLoading(true)
|
|
setError("")
|
|
|
|
try {
|
|
const response = await fetch("/api/auth/password-reset", {
|
|
method: "POST",
|
|
headers: {
|
|
"Content-Type": "application/json",
|
|
},
|
|
body: JSON.stringify({ email }),
|
|
})
|
|
|
|
const data = await response.json()
|
|
|
|
if (!response.ok) {
|
|
setError(data.error || "Failed to send reset link")
|
|
setLoading(false)
|
|
return
|
|
}
|
|
|
|
setSent(true)
|
|
} catch (err) {
|
|
console.error("Password reset error:", err)
|
|
setError("An unexpected error occurred")
|
|
} finally {
|
|
setLoading(false)
|
|
}
|
|
}
|
|
|
|
if (sent) {
|
|
return (
|
|
<div className="min-h-screen flex items-center justify-center bg-gray-50 py-12 px-4 sm:px-6 lg:px-8">
|
|
<div className="max-w-md w-full space-y-8">
|
|
<div className="text-center">
|
|
<h2 className="mt-6 text-3xl font-extrabold text-gray-900">
|
|
Check your email
|
|
</h2>
|
|
<p className="mt-2 text-sm text-gray-600">
|
|
If an account exists with that email, a password reset link will be sent.
|
|
</p>
|
|
</div>
|
|
<div className="text-center">
|
|
<Link
|
|
href="/auth/login"
|
|
className="font-medium text-green-600 hover:text-green-500"
|
|
>
|
|
Return to sign in
|
|
</Link>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
)
|
|
}
|
|
|
|
return (
|
|
<div className="min-h-screen flex items-center justify-center bg-gray-50 py-12 px-4 sm:px-6 lg:px-8">
|
|
<div className="max-w-md w-full space-y-8">
|
|
<div>
|
|
<h2 className="mt-6 text-center text-3xl font-extrabold text-gray-900">
|
|
Reset Password
|
|
</h2>
|
|
<p className="mt-2 text-center text-sm text-gray-600">
|
|
Enter your email address and we will send you a link to reset your password.
|
|
</p>
|
|
</div>
|
|
<form className="mt-8 space-y-6" onSubmit={handleSubmit}>
|
|
{error && (
|
|
<div className="rounded-md bg-red-50 p-4">
|
|
<div className="text-sm text-red-700">{error}</div>
|
|
</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 rounded-md relative block w-full px-3 py-2 border border-gray-300 placeholder-gray-500 text-gray-900 focus:outline-none focus:ring-green-500 focus:border-green-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-md text-white bg-green-600 hover:bg-green-700 focus:outline-none focus:ring-2 focus:ring-offset-2 focus:ring-green-500 disabled:opacity-50 disabled:cursor-not-allowed"
|
|
>
|
|
{loading ? "Sending..." : "Send Reset Link"}
|
|
</button>
|
|
</div>
|
|
|
|
<div className="text-center text-sm">
|
|
<Link
|
|
href="/auth/login"
|
|
className="font-medium text-green-600 hover:text-green-500"
|
|
>
|
|
Remember your password? Sign in
|
|
</Link>
|
|
</div>
|
|
</form>
|
|
</div>
|
|
</div>
|
|
)
|
|
} |