133 lines
5.0 KiB
TypeScript
133 lines
5.0 KiB
TypeScript
'use client';
|
|
import { Suspense, useState } from 'react';
|
|
import { useRouter, useSearchParams } from 'next/navigation';
|
|
import Link from 'next/link';
|
|
import { useAuth } from '@/contexts/AuthContext';
|
|
|
|
function RegisterForm() {
|
|
const { register } = useAuth();
|
|
const router = useRouter();
|
|
const searchParams = useSearchParams();
|
|
const returnTo = searchParams.get('returnTo') ?? '/';
|
|
const [email, setEmail] = useState('');
|
|
const [password, setPassword] = useState('');
|
|
const [confirm, setConfirm] = useState('');
|
|
const [error, setError] = useState('');
|
|
const [loading, setLoading] = useState(false);
|
|
const [done, setDone] = useState(false);
|
|
|
|
const handleSubmit = async (e: React.FormEvent) => {
|
|
e.preventDefault();
|
|
setError('');
|
|
if (password !== confirm) {
|
|
setError('Las contraseñas no coinciden');
|
|
return;
|
|
}
|
|
setLoading(true);
|
|
const result = await register(email, password);
|
|
setLoading(false);
|
|
if (result.ok) {
|
|
router.push(returnTo);
|
|
} else {
|
|
setError(result.error || 'Error al crear cuenta');
|
|
}
|
|
};
|
|
|
|
if (done) {
|
|
return (
|
|
<div className="max-w-md mx-auto px-4 py-16">
|
|
<div className="bg-white border border-gray-200 rounded-2xl p-8 shadow-sm text-center">
|
|
<div className="mb-4 flex justify-center">
|
|
<svg width="48" height="48" viewBox="0 0 24 24" fill="none" stroke="#22c55e" strokeWidth={2}>
|
|
<path strokeLinecap="round" strokeLinejoin="round" d="M3 8l7.89 5.26a2 2 0 002.22 0L21 8M5 19h14a2 2 0 002-2V7a2 2 0 00-2-2H5a2 2 0 00-2 2v10a2 2 0 002 2z"/>
|
|
</svg>
|
|
</div>
|
|
<h1 className="text-2xl font-bold text-gray-900 mb-4" style={{ fontFamily: 'var(--font-heading)' }}>
|
|
¡Revisa tu correo!
|
|
</h1>
|
|
<p className="text-gray-600 mb-6">
|
|
Hemos enviado un enlace de confirmación a <strong>{email}</strong>.<br/>
|
|
Haz clic en el enlace para activar tu cuenta.
|
|
</p>
|
|
<p className="text-sm text-gray-400">
|
|
¿No lo recibiste? <Link href="/auth/register" className="text-[#70ad47] hover:underline">Inténtalo de nuevo</Link>
|
|
</p>
|
|
</div>
|
|
</div>
|
|
);
|
|
}
|
|
|
|
return (
|
|
<div className="max-w-md mx-auto px-4 py-16">
|
|
<div className="bg-white border border-gray-200 rounded-2xl p-8 shadow-sm">
|
|
<h1 className="text-2xl font-bold text-gray-900 mb-6 text-center" style={{ fontFamily: 'var(--font-heading)' }}>
|
|
Crear cuenta
|
|
</h1>
|
|
<form onSubmit={handleSubmit} className="space-y-4">
|
|
{error && (
|
|
<div className="bg-red-50 border border-red-200 text-red-700 text-sm rounded-lg px-4 py-3">
|
|
{error}
|
|
{error.includes('ya está registrado') && (
|
|
<div className="mt-2">
|
|
<Link href="/auth/login" className="underline font-medium hover:no-underline">
|
|
Inicia sesión con tu cuenta existente
|
|
</Link>
|
|
</div>
|
|
)}
|
|
</div>
|
|
)}
|
|
<div>
|
|
<label className="block text-sm font-medium text-gray-700 mb-1">Email</label>
|
|
<input
|
|
type="email"
|
|
required
|
|
value={email}
|
|
onChange={(e) => setEmail(e.target.value)}
|
|
className="w-full px-4 py-3 border border-gray-300 rounded-xl focus:ring-2 focus:ring-[#70ad47] focus:border-transparent outline-none"
|
|
/>
|
|
</div>
|
|
<div>
|
|
<label className="block text-sm font-medium text-gray-700 mb-1">Contraseña</label>
|
|
<input
|
|
type="password"
|
|
required
|
|
value={password}
|
|
onChange={(e) => setPassword(e.target.value)}
|
|
minLength={8}
|
|
className="w-full px-4 py-3 border border-gray-300 rounded-xl focus:ring-2 focus:ring-[#70ad47] focus:border-transparent outline-none"
|
|
/>
|
|
</div>
|
|
<div>
|
|
<label className="block text-sm font-medium text-gray-700 mb-1">Confirmar contraseña</label>
|
|
<input
|
|
type="password"
|
|
required
|
|
value={confirm}
|
|
onChange={(e) => setConfirm(e.target.value)}
|
|
className="w-full px-4 py-3 border border-gray-300 rounded-xl focus:ring-2 focus:ring-[#70ad47] focus:border-transparent outline-none"
|
|
/>
|
|
</div>
|
|
<button
|
|
type="submit"
|
|
disabled={loading}
|
|
className="w-full py-3 bg-[#70ad47] hover:bg-[#5a9040] disabled:opacity-60 text-white font-semibold rounded-xl transition-colors"
|
|
>
|
|
{loading ? 'Creando...' : 'Crear cuenta'}
|
|
</button>
|
|
<p className="text-center text-sm text-gray-500">
|
|
¿Ya tienes cuenta? <Link href="/auth/login" className="text-[#70ad47] hover:underline font-medium">Inicia sesión</Link>
|
|
</p>
|
|
</form>
|
|
</div>
|
|
</div>
|
|
);
|
|
}
|
|
|
|
export default function RegisterPage() {
|
|
return (
|
|
<Suspense>
|
|
<RegisterForm />
|
|
</Suspense>
|
|
);
|
|
}
|