'use client' import { useState } from 'react' import { useTranslations } from 'next-intl' import { Turnstile } from '@/components/Turnstile' const ERROR_KEYS = [ 'missingFields', 'passwordMismatch', 'passwordTooLong', 'invalidEmail', 'emailExists', 'recruiterNotFound', 'captchaFailed', ] as const const SITE_KEY = process.env.NEXT_PUBLIC_TURNSTILE_SITE_KEY export function RegisterForm() { const t = useTranslations('Register') const [form, setForm] = useState({ password: '', confPassword: '', email: '', confEmail: '', recruiter: '' }) const [accepted, setAccepted] = useState(false) const [busy, setBusy] = useState(false) const [captcha, setCaptcha] = useState('') const [message, setMessage] = useState<{ ok: boolean; text: string } | null>(null) function upd(k: string, v: string) { setForm((f) => ({ ...f, [k]: v })) } async function handleSubmit(e: React.FormEvent) { e.preventDefault() if (busy || !accepted) return setBusy(true) setMessage(null) try { const res = await fetch('/api/auth/register', { method: 'POST', headers: { 'Content-Type': 'application/json' }, credentials: 'same-origin', body: JSON.stringify({ ...form, turnstileToken: captcha }), }) const data: { success?: boolean; error?: string } = await res.json() if (data.success) { setMessage({ ok: true, text: t('success') }) } else { const key = (ERROR_KEYS as readonly string[]).includes(data.error ?? '') ? data.error! : 'genericError' setMessage({ ok: false, text: t(key) }) } } catch { setMessage({ ok: false, text: t('genericError') }) } finally { setBusy(false) } } const input = 'w-full rounded border border-amber-900/60 bg-[#2c1e14] px-3 py-2' return (

{t('info')}

upd('password', e.target.value)} className={input} /> upd('confPassword', e.target.value)} className={input} /> upd('email', e.target.value)} className={input} /> upd('confEmail', e.target.value)} className={input} /> upd('recruiter', e.target.value)} className={input} /> {message &&

{message.text}

}
) }