mirror of
https://github.com/nihonbuzz/nihonbuzz-academy.git
synced 2026-01-26 13:32:07 +07:00
128 lines
7.1 KiB
TypeScript
128 lines
7.1 KiB
TypeScript
import InputError from '@/Components/InputError';
|
|
import GuestLayout from '@/Layouts/GuestLayout';
|
|
import { Head, Link, useForm } from '@inertiajs/react';
|
|
import { FormEventHandler } from 'react';
|
|
import { Card, CardContent, CardDescription, CardHeader, CardTitle } from '@/Components/ui/card';
|
|
import { Label } from '@/Components/ui/label';
|
|
import { Input } from '@/Components/ui/input';
|
|
import { Button } from '@/Components/ui/button';
|
|
import { UserPlus, ArrowLeft } from 'lucide-react';
|
|
|
|
export default function Register() {
|
|
const { data, setData, post, processing, errors, reset } = useForm({
|
|
name: '',
|
|
email: '',
|
|
password: '',
|
|
password_confirmation: '',
|
|
});
|
|
|
|
const submit: FormEventHandler = (e) => {
|
|
e.preventDefault();
|
|
|
|
post(route('register'), {
|
|
onFinish: () => reset('password', 'password_confirmation'),
|
|
});
|
|
};
|
|
|
|
return (
|
|
<GuestLayout>
|
|
<Head title="Registrasi Peserta Didik" />
|
|
|
|
<Card className="border-white/10 bg-white/40 dark:bg-black/40 backdrop-blur-2xl shadow-[0_24px_48px_-12px_rgba(0,0,0,0.1)] rounded-[2.5rem] overflow-hidden">
|
|
<CardHeader className="space-y-1 text-center pt-10 pb-6 px-8">
|
|
<CardTitle className="text-3xl font-black tracking-tight text-foreground flex items-center justify-center gap-3">
|
|
Mulai Belajar
|
|
</CardTitle>
|
|
<CardDescription className="text-muted-foreground font-medium text-xs uppercase tracking-widest pt-2">
|
|
Pendaftaran Peserta Didik LPK NihonBuzz
|
|
</CardDescription>
|
|
</CardHeader>
|
|
<CardContent className="px-8 pb-10">
|
|
<form onSubmit={submit} className="space-y-4">
|
|
<div className="space-y-2">
|
|
<Label htmlFor="name" className="text-[10px] font-black uppercase tracking-widest text-muted-foreground ml-1">Nama Lengkap Siswa</Label>
|
|
<Input
|
|
id="name"
|
|
name="name"
|
|
value={data.name}
|
|
className="h-14 rounded-2xl bg-white/50 dark:bg-black/50 border-white/20 focus:ring-nihonbuzz-red/20 focus:border-nihonbuzz-red transition-all"
|
|
autoComplete="name"
|
|
placeholder="Masukkan nama lengkap Anda"
|
|
onChange={(e) => setData('name', e.target.value)}
|
|
required
|
|
/>
|
|
<InputError message={errors.name} />
|
|
</div>
|
|
|
|
<div className="space-y-2">
|
|
<Label htmlFor="email" className="text-[10px] font-black uppercase tracking-widest text-muted-foreground ml-1">Alamat Email</Label>
|
|
<Input
|
|
id="email"
|
|
type="email"
|
|
name="email"
|
|
value={data.email}
|
|
className="h-14 rounded-2xl bg-white/50 dark:bg-black/50 border-white/20 focus:ring-nihonbuzz-red/20 focus:border-nihonbuzz-red transition-all"
|
|
autoComplete="username"
|
|
placeholder="email@contoh.com"
|
|
onChange={(e) => setData('email', e.target.value)}
|
|
required
|
|
/>
|
|
<InputError message={errors.email} />
|
|
</div>
|
|
|
|
<div className="grid grid-cols-1 sm:grid-cols-2 gap-4 pt-1">
|
|
<div className="space-y-2">
|
|
<Label htmlFor="password" className="text-[10px] font-black uppercase tracking-widest text-muted-foreground ml-1">Password</Label>
|
|
<Input
|
|
id="password"
|
|
type="password"
|
|
name="password"
|
|
value={data.password}
|
|
className="h-14 rounded-2xl bg-white/50 dark:bg-black/50 border-white/20 focus:ring-nihonbuzz-red/20 focus:border-nihonbuzz-red transition-all"
|
|
autoComplete="new-password"
|
|
onChange={(e) => setData('password', e.target.value)}
|
|
required
|
|
/>
|
|
<InputError message={errors.password} />
|
|
</div>
|
|
|
|
<div className="space-y-2">
|
|
<Label htmlFor="password_confirmation" className="text-[10px] font-black uppercase tracking-widest text-muted-foreground ml-1">Konfirmasi</Label>
|
|
<Input
|
|
id="password_confirmation"
|
|
type="password"
|
|
name="password_confirmation"
|
|
value={data.password_confirmation}
|
|
className="h-14 rounded-2xl bg-white/50 dark:bg-black/50 border-white/20 focus:ring-nihonbuzz-red/20 focus:border-nihonbuzz-red transition-all"
|
|
autoComplete="new-password"
|
|
onChange={(e) => setData('password_confirmation', e.target.value)}
|
|
required
|
|
/>
|
|
<InputError message={errors.password_confirmation} />
|
|
</div>
|
|
</div>
|
|
|
|
<div className="pt-6">
|
|
<Button className="w-full h-16 rounded-[1.5rem] text-base font-black shadow-2xl shadow-nihonbuzz-red/20 bg-nihonbuzz-red hover:bg-nihonbuzz-red/90 transition-all hover:scale-[1.02] active:scale-[0.98] group" disabled={processing}>
|
|
Daftar Sekarang <UserPlus className="ml-2 w-5 h-5 group-hover:rotate-12 transition-transform" />
|
|
</Button>
|
|
</div>
|
|
|
|
<div className="text-center pt-4">
|
|
<p className="text-xs text-muted-foreground font-medium">
|
|
Sudah memiliki akun LPK?{' '}
|
|
<Link
|
|
href={route('login')}
|
|
className="text-nihonbuzz-red font-black hover:underline uppercase tracking-widest text-[10px] ml-1"
|
|
>
|
|
<ArrowLeft className="inline-block w-3 h-3 mr-1" /> Kembali Masuk
|
|
</Link>
|
|
</p>
|
|
</div>
|
|
</form>
|
|
</CardContent>
|
|
</Card>
|
|
</GuestLayout>
|
|
);
|
|
}
|