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.
89 lines
2.7 KiB
JavaScript
89 lines
2.7 KiB
JavaScript
import React, { useEffect } from 'react';
|
|
import Button from '@/Components/Button';
|
|
import Guest from '@/Layouts/Guest';
|
|
import Input from '@/Components/Input';
|
|
import Label from '@/Components/Label';
|
|
import ValidationErrors from '@/Components/ValidationErrors';
|
|
import { Head, useForm } from '@inertiajs/inertia-react';
|
|
|
|
export default function ResetPassword({ token, email }) {
|
|
const { data, setData, post, processing, errors, reset } = useForm({
|
|
token: token,
|
|
email: email,
|
|
password: '',
|
|
password_confirmation: '',
|
|
});
|
|
|
|
useEffect(() => {
|
|
return () => {
|
|
reset('password', 'password_confirmation');
|
|
};
|
|
}, []);
|
|
|
|
const onHandleChange = (event) => {
|
|
setData(event.target.name, event.target.value);
|
|
};
|
|
|
|
const submit = (e) => {
|
|
e.preventDefault();
|
|
|
|
post(route('password.update'));
|
|
};
|
|
|
|
return (
|
|
<Guest>
|
|
<Head title="Reset Password" />
|
|
|
|
<ValidationErrors errors={errors} />
|
|
|
|
<form onSubmit={submit}>
|
|
<div>
|
|
<Label forInput="email" value="Email" />
|
|
|
|
<Input
|
|
type="email"
|
|
name="email"
|
|
value={data.email}
|
|
className="mt-1 block w-full"
|
|
autoComplete="username"
|
|
handleChange={onHandleChange}
|
|
/>
|
|
</div>
|
|
|
|
<div className="mt-4">
|
|
<Label forInput="password" value="Password" />
|
|
|
|
<Input
|
|
type="password"
|
|
name="password"
|
|
value={data.password}
|
|
className="mt-1 block w-full"
|
|
autoComplete="new-password"
|
|
isFocused={true}
|
|
handleChange={onHandleChange}
|
|
/>
|
|
</div>
|
|
|
|
<div className="mt-4">
|
|
<Label forInput="password_confirmation" value="Confirm Password" />
|
|
|
|
<Input
|
|
type="password"
|
|
name="password_confirmation"
|
|
value={data.password_confirmation}
|
|
className="mt-1 block w-full"
|
|
autoComplete="new-password"
|
|
handleChange={onHandleChange}
|
|
/>
|
|
</div>
|
|
|
|
<div className="flex items-center justify-end mt-4">
|
|
<Button className="ml-4" processing={processing}>
|
|
Reset Password
|
|
</Button>
|
|
</div>
|
|
</form>
|
|
</Guest>
|
|
);
|
|
}
|