fediversion/frontend/app/forgot-password/page.tsx
fullsizemalt b4cddf41ea feat: Initialize Fediversion multi-band platform
- Fork elmeg-demo codebase for multi-band support
- Add data importer infrastructure with base class
- Create band-specific importers:
  - phish.py: Phish.net API v5
  - grateful_dead.py: Grateful Stats API
  - setlistfm.py: Dead & Company, Billy Strings (Setlist.fm)
- Add spec-kit configuration for Gemini
- Update README with supported bands and architecture
2025-12-28 12:39:28 -08:00

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>
)
}