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.
63 lines
1.8 KiB
JavaScript
63 lines
1.8 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 ConfirmPassword() {
|
|
const { data, setData, post, processing, errors, reset } = useForm({
|
|
password: '',
|
|
});
|
|
|
|
useEffect(() => {
|
|
return () => {
|
|
reset('password');
|
|
};
|
|
}, []);
|
|
|
|
const onHandleChange = (event) => {
|
|
setData(event.target.name, event.target.value);
|
|
};
|
|
|
|
const submit = (e) => {
|
|
e.preventDefault();
|
|
|
|
post(route('password.confirm'));
|
|
};
|
|
|
|
return (
|
|
<Guest>
|
|
<Head title="Confirm Password" />
|
|
|
|
<div className="mb-4 text-sm text-gray-600">
|
|
This is a secure area of the application. Please confirm your password before continuing.
|
|
</div>
|
|
|
|
<ValidationErrors errors={errors} />
|
|
|
|
<form onSubmit={submit}>
|
|
<div className="mt-4">
|
|
<Label forInput="password" value="Password" />
|
|
|
|
<Input
|
|
type="password"
|
|
name="password"
|
|
value={data.password}
|
|
className="mt-1 block w-full"
|
|
isFocused={true}
|
|
handleChange={onHandleChange}
|
|
/>
|
|
</div>
|
|
|
|
<div className="flex items-center justify-end mt-4">
|
|
<Button className="ml-4" processing={processing}>
|
|
Confirm
|
|
</Button>
|
|
</div>
|
|
</form>
|
|
</Guest>
|
|
);
|
|
}
|