UserDashboard/components/auth/components-auth-register-form.tsx
2025-08-15 10:43:33 +08:00

132 lines
3.8 KiB
TypeScript

// components/auth/components-auth-register-form.tsx
"use client";
import * as React from "react";
import { useRouter } from "next/navigation";
type Props = {
redirectTo?: string; // optional override
};
export default function ComponentsAuthRegisterForm({ redirectTo = "/dashboard" }: Props) {
const router = useRouter();
const [email, setEmail] = React.useState("");
const [password, setPassword] = React.useState("");
const [confirm, setConfirm] = React.useState("");
const [loading, setLoading] = React.useState(false);
const [error, setError] = React.useState<string | null>(null);
async function onSubmit(e: React.FormEvent) {
e.preventDefault();
setError(null);
if (!email.trim() || !password) {
setError("Please fill in all fields.");
return;
}
if (password.length < 8) {
setError("Password must be at least 8 characters.");
return;
}
if (password !== confirm) {
setError("Passwords do not match.");
return;
}
try {
setLoading(true);
const res = await fetch("/api/register", {
method: "POST",
headers: { "Content-Type": "application/json" },
body: JSON.stringify({ email, password }),
});
const data = await res.json();
if (!res.ok) {
setError(data?.message || "Registration failed.");
return;
}
// Cookie is set by API; just route away
router.replace(redirectTo);
} catch (err) {
setError("Network error. Please try again.");
} finally {
setLoading(false);
}
}
return (
<form onSubmit={onSubmit} className="space-y-4 text-left">
<div>
<label htmlFor="email" className="mb-1 block text-sm text-gray-300">
Email
</label>
<input
id="email"
type="email"
autoComplete="email"
className="w-full rounded-xl border border-white/10 bg-white/10 px-4 py-3 text-white placeholder-gray-400 outline-none focus:border-yellow-400"
placeholder="you@example.com"
value={email}
onChange={(e) => setEmail(e.target.value)}
disabled={loading}
required
/>
</div>
<div>
<label htmlFor="password" className="mb-1 block text-sm text-gray-300">
Password
</label>
<input
id="password"
type="password"
autoComplete="new-password"
className="w-full rounded-xl border border-white/10 bg-white/10 px-4 py-3 text-white placeholder-gray-400 outline-none focus:border-yellow-400"
placeholder="••••••••"
value={password}
onChange={(e) => setPassword(e.target.value)}
disabled={loading}
required
minLength={8}
/>
</div>
<div>
<label htmlFor="confirm" className="mb-1 block text-sm text-gray-300">
Confirm Password
</label>
<input
id="confirm"
type="password"
autoComplete="new-password"
className="w-full rounded-xl border border-white/10 bg-white/10 px-4 py-3 text-white placeholder-gray-400 outline-none focus:border-yellow-400"
placeholder="••••••••"
value={confirm}
onChange={(e) => setConfirm(e.target.value)}
disabled={loading}
required
minLength={8}
/>
</div>
{error && (
<p className="rounded-lg bg-red-500/10 px-3 py-2 text-sm text-red-300">
{error}
</p>
)}
<button
type="submit"
disabled={loading}
className="inline-flex w-full items-center justify-center rounded-xl bg-yellow-400 px-4 py-3 font-semibold text-black hover:brightness-90 disabled:opacity-60"
>
{loading ? "Creating account…" : "Create account"}
</button>
</form>
);
}