- Add email_verified, verification_token, reset_token fields to User model - Create email_service.py with SendGrid integration - Add auth endpoints: verify-email, resend-verification, forgot-password, reset-password - Create frontend pages: /verify-email, /forgot-password, /reset-password - Add forgot password link to login page - Add PLATFORM_ENHANCEMENT_SPEC.md specification
110 lines
4.2 KiB
TypeScript
110 lines
4.2 KiB
TypeScript
"use client"
|
|
|
|
import { useState } from "react"
|
|
import { Card, CardContent, CardHeader, CardTitle, CardDescription } from "@/components/ui/card"
|
|
import { Button } from "@/components/ui/button"
|
|
import { Input } from "@/components/ui/input"
|
|
import { Label } from "@/components/ui/label"
|
|
import { Mail, ArrowLeft, CheckCircle } from "lucide-react"
|
|
import Link from "next/link"
|
|
import { getApiUrl } from "@/lib/api-config"
|
|
|
|
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 res = await fetch(`${getApiUrl()}/auth/forgot-password`, {
|
|
method: "POST",
|
|
headers: { "Content-Type": "application/json" },
|
|
body: JSON.stringify({ email })
|
|
})
|
|
|
|
if (res.ok) {
|
|
setSubmitted(true)
|
|
} else {
|
|
const data = await res.json()
|
|
setError(data.detail || "Failed to send reset email")
|
|
}
|
|
} catch (e) {
|
|
setError("An error occurred. Please try again.")
|
|
} finally {
|
|
setLoading(false)
|
|
}
|
|
}
|
|
|
|
if (submitted) {
|
|
return (
|
|
<div className="container max-w-md mx-auto py-16 px-4">
|
|
<Card>
|
|
<CardHeader className="text-center">
|
|
<CheckCircle className="h-12 w-12 text-green-500 mx-auto mb-4" />
|
|
<CardTitle>Check Your Email</CardTitle>
|
|
<CardDescription>
|
|
If an account exists with that email, we've sent password reset instructions.
|
|
</CardDescription>
|
|
</CardHeader>
|
|
<CardContent className="text-center">
|
|
<Button variant="outline" asChild>
|
|
<Link href="/login">
|
|
<ArrowLeft className="mr-2 h-4 w-4" />
|
|
Back to Login
|
|
</Link>
|
|
</Button>
|
|
</CardContent>
|
|
</Card>
|
|
</div>
|
|
)
|
|
}
|
|
|
|
return (
|
|
<div className="container max-w-md mx-auto py-16 px-4">
|
|
<Card>
|
|
<CardHeader className="text-center">
|
|
<Mail className="h-12 w-12 text-primary mx-auto mb-4" />
|
|
<CardTitle>Forgot Password?</CardTitle>
|
|
<CardDescription>
|
|
Enter your email and we'll send you a reset link.
|
|
</CardDescription>
|
|
</CardHeader>
|
|
<CardContent>
|
|
<form onSubmit={handleSubmit} className="space-y-4">
|
|
<div className="space-y-2">
|
|
<Label htmlFor="email">Email</Label>
|
|
<Input
|
|
id="email"
|
|
type="email"
|
|
placeholder="you@example.com"
|
|
value={email}
|
|
onChange={(e) => setEmail(e.target.value)}
|
|
required
|
|
/>
|
|
</div>
|
|
|
|
{error && (
|
|
<p className="text-sm text-red-500">{error}</p>
|
|
)}
|
|
|
|
<Button type="submit" className="w-full" disabled={loading}>
|
|
{loading ? "Sending..." : "Send Reset Link"}
|
|
</Button>
|
|
|
|
<div className="text-center">
|
|
<Link href="/login" className="text-sm text-muted-foreground hover:underline">
|
|
<ArrowLeft className="inline h-3 w-3 mr-1" />
|
|
Back to Login
|
|
</Link>
|
|
</div>
|
|
</form>
|
|
</CardContent>
|
|
</Card>
|
|
</div>
|
|
)
|
|
}
|