- 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
86 lines
3.2 KiB
TypeScript
86 lines
3.2 KiB
TypeScript
"use client"
|
|
|
|
import { useEffect, useState } from "react"
|
|
import { useSearchParams } from "next/navigation"
|
|
import { Card, CardContent, CardHeader, CardTitle, CardDescription } from "@/components/ui/card"
|
|
import { Button } from "@/components/ui/button"
|
|
import { CheckCircle, XCircle, Loader2 } from "lucide-react"
|
|
import Link from "next/link"
|
|
import { getApiUrl } from "@/lib/api-config"
|
|
|
|
export default function VerifyEmailPage() {
|
|
const searchParams = useSearchParams()
|
|
const [status, setStatus] = useState<"loading" | "success" | "error">("loading")
|
|
const [message, setMessage] = useState("")
|
|
|
|
const verifyEmail = async (token: string) => {
|
|
try {
|
|
const res = await fetch(`${getApiUrl()}/auth/verify-email`, {
|
|
method: "POST",
|
|
headers: { "Content-Type": "application/json" },
|
|
body: JSON.stringify({ token })
|
|
})
|
|
|
|
const data = await res.json()
|
|
|
|
if (res.ok) {
|
|
setStatus("success")
|
|
setMessage(data.message || "Email verified successfully!")
|
|
} else {
|
|
setStatus("error")
|
|
setMessage(data.detail || "Verification failed")
|
|
}
|
|
} catch (_) {
|
|
setStatus("error")
|
|
setMessage("An error occurred during verification")
|
|
}
|
|
}
|
|
|
|
useEffect(() => {
|
|
const token = searchParams.get("token")
|
|
if (!token) {
|
|
setStatus("error")
|
|
setMessage("No verification token provided")
|
|
return
|
|
}
|
|
|
|
verifyEmail(token)
|
|
}, [searchParams])
|
|
|
|
return (
|
|
<div className="container max-w-md mx-auto py-16 px-4">
|
|
<Card>
|
|
<CardHeader className="text-center">
|
|
<CardTitle className="flex items-center justify-center gap-2">
|
|
{status === "loading" && <Loader2 className="h-6 w-6 animate-spin" />}
|
|
{status === "success" && <CheckCircle className="h-6 w-6 text-green-500" />}
|
|
{status === "error" && <XCircle className="h-6 w-6 text-red-500" />}
|
|
Email Verification
|
|
</CardTitle>
|
|
<CardDescription>
|
|
{status === "loading" && "Verifying your email..."}
|
|
{status === "success" && "Your email has been verified!"}
|
|
{status === "error" && "Verification failed"}
|
|
</CardDescription>
|
|
</CardHeader>
|
|
<CardContent className="text-center space-y-4">
|
|
<p className="text-muted-foreground">{message}</p>
|
|
|
|
{status === "success" && (
|
|
<Button asChild>
|
|
<Link href="/login">Continue to Login</Link>
|
|
</Button>
|
|
)}
|
|
|
|
{status === "error" && (
|
|
<div className="space-y-2">
|
|
<Button variant="outline" asChild>
|
|
<Link href="/login">Go to Login</Link>
|
|
</Button>
|
|
</div>
|
|
)}
|
|
</CardContent>
|
|
</Card>
|
|
</div>
|
|
)
|
|
}
|