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.
95 lines
3.1 KiB
JavaScript
95 lines
3.1 KiB
JavaScript
import React, { useEffect } from 'react';
|
|
import Checkbox from '@/Components/Checkbox';
|
|
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/react';
|
|
import ApplicationLogo from '@/Components/ApplicationLogo';
|
|
|
|
export default function Login({ status, canResetPassword }) {
|
|
const { data, setData, post, processing, errors, reset } = useForm({
|
|
email: '',
|
|
password: '',
|
|
remember: '',
|
|
});
|
|
|
|
useEffect(() => {
|
|
return () => {
|
|
reset('password');
|
|
};
|
|
}, []);
|
|
|
|
const onHandleChange = (event) => {
|
|
setData(event.target.name, event.target.type === 'checkbox' ? event.target.checked : event.target.value);
|
|
};
|
|
|
|
const submit = (e) => {
|
|
e.preventDefault();
|
|
|
|
post(route('login'));
|
|
};
|
|
|
|
return (
|
|
<GuestLayout>
|
|
<Head title="Log in" />
|
|
|
|
<div className='mx-auto mt-5 mb-10'>
|
|
<Link href="/">
|
|
<ApplicationLogo className="font-bold text-2xl" />
|
|
</Link>
|
|
</div>
|
|
{status && <div className="mb-4 font-medium text-sm text-green-600">{status}</div>}
|
|
|
|
<form onSubmit={submit}>
|
|
<div>
|
|
<InputLabel forInput="email" value="Email" />
|
|
|
|
<TextInput
|
|
type="text"
|
|
name="email"
|
|
value={data.email}
|
|
className="mt-1 block w-full"
|
|
autoComplete="username"
|
|
isFocused={true}
|
|
handleChange={onHandleChange}
|
|
/>
|
|
|
|
<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="current-password"
|
|
handleChange={onHandleChange}
|
|
/>
|
|
|
|
<InputError message={errors.password} className="mt-2" />
|
|
</div>
|
|
|
|
<div className="block mt-4">
|
|
<label className="flex items-center">
|
|
<Checkbox name="remember" value={data.remember} handleChange={onHandleChange} />
|
|
|
|
<span className="ml-2 text-sm ">Remember me</span>
|
|
</label>
|
|
</div>
|
|
|
|
<div className="flex items-center justify-end mt-4">
|
|
<PrimaryButton className="ml-4" processing={processing}>
|
|
Log in
|
|
</PrimaryButton>
|
|
|
|
</div>
|
|
</form>
|
|
</GuestLayout>
|
|
);
|
|
}
|