Files
cv4/resources/js/Pages/Auth/Register.jsx
2024-12-27 21:20:40 -05:00

81 lines
4.2 KiB
JavaScript

import InputError from '@/components/InputError';
import PrimaryButton from '@/components/PrimaryButton';
import TextInput from '@/components/TextInput';
import GuestLayout from '@/Layouts/GuestLayout';
import { Head, Link, useForm } from '@inertiajs/react';
import { Card, CardContent, CardHeader, CardTitle } from "@/components/ui/card.jsx";
import { Label } from "@/components/ui/label.jsx";
export default function Register() {
const { data, setData, post, processing, errors, reset } = useForm({
name: '',
email: '',
password: '',
password_confirmation: '',
});
const submit = (e) => {
e.preventDefault();
post(route('register'), {
onFinish: () => reset('password', 'password_confirmation'),
});
};
return (
<GuestLayout>
<Head title="Register" />
<div className="flex flex-col gap-6">
<Card>
<CardHeader>
<CardTitle className="text-2xl">Register</CardTitle>
</CardHeader>
<CardContent>
<form onSubmit={ submit }>
<div className="flex flex-col gap-6">
<div className="grid gap-2">
<Label htmlFor="email">Username</Label>
<TextInput id="name" placeholder="yumjin" value={ data.name }
onChange={ (e) => setData('name', e.target.value) } required />
<InputError message={ errors.name } className="mt-2" />
</div>
<div className="grid gap-2">
<Label htmlFor="email">E-mail Address</Label>
<TextInput type="email" id="email" placeholder="me@yumj.in" value={ data.email }
onChange={ (e) => setData('email', e.target.value) } required />
<InputError message={ errors.email } className="mt-2" />
</div>
<div className="grid gap-2">
<div className="flex items-center">
<Label htmlFor="password">Password</Label>
</div>
<TextInput id="password" type="password" name="password" value={ data.password }
autoComplete="current-password"
onChange={ (e) => setData('password', e.target.value) } />
<InputError message={ errors.password } className="mt-2" />
</div>
<div className="grid gap-2">
<div className="flex items-center">
<Label htmlFor="password">Confirm Password</Label>
</div>
<TextInput id="password_confirmation" type="password" name="password_confirmation" value={ data.password_confirmation }
autoComplete="current-password"
onChange={ (e) => setData('password_confirmation', e.target.value) } />
<InputError message={ errors.password_confirmation } className="mt-2" />
</div>
<PrimaryButton type="submit" disabled={ processing }
className="w-full">Register</PrimaryButton>
</div>
<div className="mt-4 text-center text-sm">
<Link href={ route('login') } className="underline underline-offset-4">
Already registered?
</Link>
</div>
</form>
</CardContent>
</Card>
</div>
</GuestLayout>
);
}