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.
55 lines
1.7 KiB
JavaScript
55 lines
1.7 KiB
JavaScript
import React from 'react';
|
|
import Button from '@/Components/Button';
|
|
import Guest from '@/Layouts/Guest';
|
|
import Input from '@/Components/Input';
|
|
import ValidationErrors from '@/Components/ValidationErrors';
|
|
import { Head, useForm } from '@inertiajs/inertia-react';
|
|
|
|
export default function ForgotPassword({ status }) {
|
|
const { data, setData, post, processing, errors } = useForm({
|
|
email: '',
|
|
});
|
|
|
|
const onHandleChange = (event) => {
|
|
setData(event.target.name, event.target.value);
|
|
};
|
|
|
|
const submit = (e) => {
|
|
e.preventDefault();
|
|
|
|
post(route('password.email'));
|
|
};
|
|
|
|
return (
|
|
<Guest>
|
|
<Head title="Forgot Password" />
|
|
|
|
<div className="mb-4 text-sm text-gray-500 leading-normal">
|
|
Forgot your password? No problem. Just let us know your email address and we will email you a password
|
|
reset link that will allow you to choose a new one.
|
|
</div>
|
|
|
|
{status && <div className="mb-4 font-medium text-sm text-green-600">{status}</div>}
|
|
|
|
<ValidationErrors errors={errors} />
|
|
|
|
<form onSubmit={submit}>
|
|
<Input
|
|
type="text"
|
|
name="email"
|
|
value={data.email}
|
|
className="mt-1 block w-full"
|
|
isFocused={true}
|
|
handleChange={onHandleChange}
|
|
/>
|
|
|
|
<div className="flex items-center justify-end mt-4">
|
|
<Button className="ml-4" processing={processing}>
|
|
Email Password Reset Link
|
|
</Button>
|
|
</div>
|
|
</form>
|
|
</Guest>
|
|
);
|
|
}
|