89 lines
2.7 KiB
TypeScript
89 lines
2.7 KiB
TypeScript
"use client"
|
|
|
|
import { useState } from "react"
|
|
import { useRouter } from "next/navigation"
|
|
import { authClient } from "@/lib/auth-client"
|
|
|
|
export default function RegisterPage() {
|
|
const [email, setEmail] = useState("")
|
|
const [password, setPassword] = useState("")
|
|
const [name, setName] = useState("")
|
|
const [loading, setLoading] = useState(false)
|
|
const [error, setError] = useState("")
|
|
const router = useRouter()
|
|
|
|
const handleRegister = async (e: React.FormEvent) => {
|
|
e.preventDefault()
|
|
setLoading(true)
|
|
setError("")
|
|
|
|
const { error: err } = await authClient.signUp.email({
|
|
email,
|
|
password,
|
|
name: name || "",
|
|
})
|
|
|
|
if (err) {
|
|
setError(err.message || "Error al registrarse")
|
|
setLoading(false)
|
|
return
|
|
}
|
|
|
|
router.push("/parent")
|
|
}
|
|
|
|
return (
|
|
<div className="min-h-dvh flex items-center justify-center p-6">
|
|
<form onSubmit={handleRegister} className="w-full max-w-sm flex flex-col gap-6">
|
|
<h1 className="text-2xl font-display font-bold text-foreground text-center">
|
|
Crear cuenta · Mamá
|
|
</h1>
|
|
|
|
{error && <p className="text-destructive text-sm text-center">{error}</p>}
|
|
|
|
<input
|
|
type="text"
|
|
placeholder="Tu nombre"
|
|
value={name}
|
|
onChange={(e) => setName(e.target.value)}
|
|
className="w-full rounded-xl border border-border bg-white px-4 py-3 text-base focus:outline-none focus:ring-2 focus:ring-primary"
|
|
/>
|
|
|
|
<input
|
|
type="email"
|
|
placeholder="Email"
|
|
value={email}
|
|
onChange={(e) => setEmail(e.target.value)}
|
|
className="w-full rounded-xl border border-border bg-white px-4 py-3 text-base focus:outline-none focus:ring-2 focus:ring-primary"
|
|
required
|
|
/>
|
|
|
|
<input
|
|
type="password"
|
|
placeholder="Contraseña (mín. 8 caracteres)"
|
|
value={password}
|
|
onChange={(e) => setPassword(e.target.value)}
|
|
minLength={8}
|
|
className="w-full rounded-xl border border-border bg-white px-4 py-3 text-base focus:outline-none focus:ring-2 focus:ring-primary"
|
|
required
|
|
/>
|
|
|
|
<button
|
|
type="submit"
|
|
disabled={loading}
|
|
className="w-full bg-primary text-primary-foreground touch-target rounded-xl text-lg font-display font-semibold disabled:opacity-50"
|
|
>
|
|
{loading ? "Creando cuenta..." : "Crear cuenta"}
|
|
</button>
|
|
|
|
<p className="text-center text-sm text-muted-foreground">
|
|
¿Ya tenés cuenta?{" "}
|
|
<a href="/parent/auth/login" className="text-primary underline">
|
|
Iniciá sesión
|
|
</a>
|
|
</p>
|
|
</form>
|
|
</div>
|
|
)
|
|
}
|