You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
115 lines
3.8 KiB
React
115 lines
3.8 KiB
React
2 years ago
|
import React, { useEffect } from 'react';
|
||
|
import GuestLayout from '@/Layouts/GuestLayout';
|
||
|
import InputError from '@/Components/InputError';
|
||
|
import InputLabel from '@/Components/InputLabel';
|
||
|
import PrimaryButton from '@/Components/PrimaryButton';
|
||
|
import TextInput from '@/Components/TextInput';
|
||
|
import { Head, Link, useForm } from '@inertiajs/inertia-react';
|
||
|
|
||
|
export default function Register() {
|
||
|
const { data, setData, post, processing, errors, reset } = useForm({
|
||
|
name: '',
|
||
|
email: '',
|
||
|
password: '',
|
||
|
password_confirmation: '',
|
||
|
});
|
||
|
|
||
|
useEffect(() => {
|
||
|
return () => {
|
||
|
reset('password', 'password_confirmation');
|
||
|
};
|
||
|
}, []);
|
||
|
|
||
|
const onHandleChange = (event) => {
|
||
|
setData(event.target.name, event.target.type === 'checkbox' ? event.target.checked : event.target.value);
|
||
|
};
|
||
|
|
||
|
const submit = (e) => {
|
||
|
e.preventDefault();
|
||
|
|
||
|
post(route('register'));
|
||
|
};
|
||
|
|
||
|
return (
|
||
|
<GuestLayout>
|
||
|
<Head title="Register" />
|
||
|
|
||
|
<form onSubmit={submit}>
|
||
|
<div>
|
||
|
<InputLabel forInput="name" value="Name" />
|
||
|
|
||
|
<TextInput
|
||
|
type="text"
|
||
|
name="name"
|
||
|
value={data.name}
|
||
|
className="mt-1 block w-full"
|
||
|
autoComplete="name"
|
||
|
isFocused={true}
|
||
|
handleChange={onHandleChange}
|
||
|
required
|
||
|
/>
|
||
|
|
||
|
<InputError message={errors.name} className="mt-2" />
|
||
|
</div>
|
||
|
|
||
|
<div className="mt-4">
|
||
|
<InputLabel forInput="email" value="Email" />
|
||
|
|
||
|
<TextInput
|
||
|
type="email"
|
||
|
name="email"
|
||
|
value={data.email}
|
||
|
className="mt-1 block w-full"
|
||
|
autoComplete="username"
|
||
|
handleChange={onHandleChange}
|
||
|
required
|
||
|
/>
|
||
|
|
||
|
<InputError message={errors.email} className="mt-2" />
|
||
|
</div>
|
||
|
|
||
|
<div className="mt-4">
|
||
|
<InputLabel forInput="password" value="Password" />
|
||
|
|
||
|
<TextInput
|
||
|
type="password"
|
||
|
name="password"
|
||
|
value={data.password}
|
||
|
className="mt-1 block w-full"
|
||
|
autoComplete="new-password"
|
||
|
handleChange={onHandleChange}
|
||
|
required
|
||
|
/>
|
||
|
|
||
|
<InputError message={errors.password} className="mt-2" />
|
||
|
</div>
|
||
|
|
||
|
<div className="mt-4">
|
||
|
<InputLabel forInput="password_confirmation" value="Confirm Password" />
|
||
|
|
||
|
<TextInput
|
||
|
type="password"
|
||
|
name="password_confirmation"
|
||
|
value={data.password_confirmation}
|
||
|
className="mt-1 block w-full"
|
||
|
handleChange={onHandleChange}
|
||
|
required
|
||
|
/>
|
||
|
|
||
|
<InputError message={errors.password_confirmation} className="mt-2" />
|
||
|
</div>
|
||
|
|
||
|
<div className="flex items-center justify-end mt-4">
|
||
|
<Link href={route('login')} className="underline text-sm text-gray-600 hover:text-gray-900">
|
||
|
Already registered?
|
||
|
</Link>
|
||
|
|
||
|
<PrimaryButton className="ml-4" processing={processing}>
|
||
|
Register
|
||
|
</PrimaryButton>
|
||
|
</div>
|
||
|
</form>
|
||
|
</GuestLayout>
|
||
|
);
|
||
|
}
|