mirror of
https://github.com/nihonbuzz/nihonbuzz-academy.git
synced 2026-01-26 05:25:37 +07:00
125 lines
5.9 KiB
TypeScript
125 lines
5.9 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';
|
|
|
|
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="Register" />
|
|
|
|
<div className="flex flex-col items-center justify-center py-12 px-4 sm:px-6 lg:px-8">
|
|
<Card className="w-full max-w-md rounded-3xl overflow-hidden">
|
|
<CardHeader className="space-y-1 text-center pt-8">
|
|
<CardTitle className="text-3xl font-extrabold tracking-tight">Buat Akun Baru</CardTitle>
|
|
<CardDescription className="text-gray-500">
|
|
Mulai petualangan belajarmu hari ini
|
|
</CardDescription>
|
|
</CardHeader>
|
|
<CardContent className="pb-8">
|
|
<form onSubmit={submit} className="space-y-6">
|
|
<div className="space-y-2">
|
|
<Label htmlFor="name">Nama Lengkap</Label>
|
|
<Input
|
|
id="name"
|
|
name="name"
|
|
value={data.name}
|
|
className="block w-full"
|
|
autoComplete="name"
|
|
placeholder="Nama Lengkap Anda"
|
|
onChange={(e) => setData('name', e.target.value)}
|
|
required
|
|
/>
|
|
<InputError message={errors.name} />
|
|
</div>
|
|
|
|
<div className="space-y-2">
|
|
<Label htmlFor="email">Email</Label>
|
|
<Input
|
|
id="email"
|
|
type="email"
|
|
name="email"
|
|
value={data.email}
|
|
className="block w-full"
|
|
autoComplete="username"
|
|
placeholder="nama@email.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">
|
|
<div className="space-y-2">
|
|
<Label htmlFor="password">Password</Label>
|
|
<Input
|
|
id="password"
|
|
type="password"
|
|
name="password"
|
|
value={data.password}
|
|
className="block w-full"
|
|
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">Konfirmasi</Label>
|
|
<Input
|
|
id="password_confirmation"
|
|
type="password"
|
|
name="password_confirmation"
|
|
value={data.password_confirmation}
|
|
className="block w-full"
|
|
autoComplete="new-password"
|
|
onChange={(e) => setData('password_confirmation', e.target.value)}
|
|
required
|
|
/>
|
|
<InputError message={errors.password_confirmation} />
|
|
</div>
|
|
</div>
|
|
|
|
<div className="pt-2">
|
|
<button className="btn btn-primary w-full h-auto py-3 rounded-xl shadow-sm text-sm font-bold" disabled={processing}>
|
|
Daftar Sekarang
|
|
</button>
|
|
</div>
|
|
|
|
<div className="text-center text-sm text-gray-500">
|
|
Sudah punya akun?{' '}
|
|
<Link
|
|
href={route('login')}
|
|
className="text-nihonbuzz-red font-bold hover:underline"
|
|
>
|
|
Masuk Saja
|
|
</Link>
|
|
</div>
|
|
</form>
|
|
</CardContent>
|
|
</Card>
|
|
</div>
|
|
</GuestLayout>
|
|
);
|
|
}
|