echos-ocr/src/app/(auth)/signup/page.tsx

188 lines
5.7 KiB
TypeScript
Raw Normal View History

"use client";
import { Suspense, useState } from "react";
import { useSearchParams } from "next/navigation";
import { signIn } from "next-auth/react";
import Link from "next/link";
import { ScanLine, Mail, Lock, User, Loader2 } from "lucide-react";
import { Button } from "@/components/ui/button";
import { Input } from "@/components/ui/input";
import { Label } from "@/components/ui/label";
export default function SignupPage() {
return (
<Suspense>
<SignupForm />
</Suspense>
);
}
function SignupForm() {
const searchParams = useSearchParams();
const token = searchParams.get("token") || "";
const [formData, setFormData] = useState({
displayName: "",
email: "",
password: "",
confirmPassword: "",
});
const [loading, setLoading] = useState(false);
const [error, setError] = useState("");
function update(field: string, value: string) {
setFormData((prev) => ({ ...prev, [field]: value }));
}
async function handleSubmit(e: React.FormEvent) {
e.preventDefault();
setError("");
if (formData.password !== formData.confirmPassword) {
setError("Passwords do not match");
return;
}
if (formData.password.length < 8) {
setError("Password must be at least 8 characters");
return;
}
setLoading(true);
try {
const res = await fetch("/api/auth/register", {
method: "POST",
headers: { "Content-Type": "application/json" },
body: JSON.stringify({
displayName: formData.displayName,
email: formData.email,
password: formData.password,
inviteToken: token,
}),
});
if (!res.ok) {
const data = await res.json();
setError(data.error || "Registration failed");
setLoading(false);
return;
}
await signIn("credentials", {
email: formData.email,
password: formData.password,
callbackUrl: "/",
});
} catch {
setError("Something went wrong. Please try again.");
setLoading(false);
}
}
return (
<div className="glass-card w-full rounded-2xl p-8">
<div className="mb-8 flex flex-col items-center">
<div className="mb-4 flex size-14 items-center justify-center rounded-2xl gradient-banner shadow-lg">
<ScanLine className="size-7 text-white" />
</div>
<h1 className="text-2xl font-bold tracking-tight">Create account</h1>
<p className="mt-1 text-sm text-muted-foreground">
{token
? "Complete your account setup"
: "You need an invitation to sign up"}
</p>
</div>
{error && (
<div className="mb-4 rounded-lg bg-destructive/10 p-3 text-center text-sm text-destructive">
{error}
</div>
)}
<form onSubmit={handleSubmit} className="space-y-4">
<div className="space-y-2">
<Label htmlFor="displayName">Full Name</Label>
<div className="relative">
<User className="pointer-events-none absolute left-3 top-1/2 size-4 -translate-y-1/2 text-muted-foreground" />
<Input
id="displayName"
type="text"
placeholder="John Smith"
value={formData.displayName}
onChange={(e) => update("displayName", e.target.value)}
required
className="pl-10"
/>
</div>
</div>
<div className="space-y-2">
<Label htmlFor="email">Email</Label>
<div className="relative">
<Mail className="pointer-events-none absolute left-3 top-1/2 size-4 -translate-y-1/2 text-muted-foreground" />
<Input
id="email"
type="email"
placeholder="you@church.org"
value={formData.email}
onChange={(e) => update("email", e.target.value)}
required
autoComplete="email"
className="pl-10"
/>
</div>
</div>
<div className="space-y-2">
<Label htmlFor="password">Password</Label>
<div className="relative">
<Lock className="pointer-events-none absolute left-3 top-1/2 size-4 -translate-y-1/2 text-muted-foreground" />
<Input
id="password"
type="password"
placeholder="Min 8 characters"
value={formData.password}
onChange={(e) => update("password", e.target.value)}
required
minLength={8}
autoComplete="new-password"
className="pl-10"
/>
</div>
</div>
<div className="space-y-2">
<Label htmlFor="confirmPassword">Confirm Password</Label>
<div className="relative">
<Lock className="pointer-events-none absolute left-3 top-1/2 size-4 -translate-y-1/2 text-muted-foreground" />
<Input
id="confirmPassword"
type="password"
placeholder="Confirm your password"
value={formData.confirmPassword}
onChange={(e) => update("confirmPassword", e.target.value)}
required
minLength={8}
autoComplete="new-password"
className="pl-10"
/>
</div>
</div>
<Button type="submit" className="w-full rounded-xl" disabled={loading}>
{loading ? <Loader2 className="mr-2 size-4 animate-spin" /> : null}
Create Account
</Button>
</form>
<p className="mt-6 text-center text-xs text-muted-foreground">
Already have an account?{" "}
<Link href="/login" className="font-medium text-primary hover:underline">
Sign in
</Link>
</p>
</div>
);
}