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.
93 lines
3.0 KiB
JavaScript
93 lines
3.0 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, useForm } from '@inertiajs/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.store'));
|
|
};
|
|
|
|
return (
|
|
<GuestLayout>
|
|
<Head title="Reset Password" />
|
|
|
|
<form onSubmit={submit}>
|
|
<div>
|
|
<InputLabel forInput="email" value="Email" />
|
|
|
|
<TextInput
|
|
type="email"
|
|
name="email"
|
|
value={data.email}
|
|
className="mt-1 block w-full"
|
|
autoComplete="username"
|
|
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="new-password"
|
|
isFocused={true}
|
|
handleChange={onHandleChange}
|
|
/>
|
|
|
|
<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"
|
|
autoComplete="new-password"
|
|
handleChange={onHandleChange}
|
|
/>
|
|
|
|
<InputError message={errors.password_confirmation} className="mt-2" />
|
|
</div>
|
|
|
|
<div className="flex items-center justify-end mt-4">
|
|
<PrimaryButton className="ml-4" processing={processing}>
|
|
Reset Password
|
|
</PrimaryButton>
|
|
</div>
|
|
</form>
|
|
</GuestLayout>
|
|
);
|
|
}
|