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.
129 lines
4.1 KiB
JavaScript
129 lines
4.1 KiB
JavaScript
import React, { useEffect } from 'react'
|
|
import GuestLayout from '@/Layouts/GuestLayout'
|
|
import InputError from '@/Components/Defaults/InputError'
|
|
import InputLabel from '@/Components/Defaults/InputLabel'
|
|
import PrimaryButton from '@/Components/Defaults/PrimaryButton'
|
|
import TextInput from '@/Components/Defaults/TextInput'
|
|
import { Head, Link, useForm } from '@inertiajs/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('admin.login')}
|
|
className="underline text-sm text-gray-600 hover:text-gray-900 rounded-md focus:outline-none focus:ring-2 focus:ring-offset-2 focus:ring-indigo-500"
|
|
>
|
|
Already registered?
|
|
</Link>
|
|
|
|
<PrimaryButton className="ml-4" processing={processing}>
|
|
Register
|
|
</PrimaryButton>
|
|
</div>
|
|
</form>
|
|
</GuestLayout>
|
|
)
|
|
}
|