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.9 KiB
JavaScript
63 lines
1.9 KiB
JavaScript
import React, { useEffect } from 'react';
|
|
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, useForm } from '@inertiajs/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 (
|
|
<GuestLayout>
|
|
<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>
|
|
|
|
<form onSubmit={submit}>
|
|
<div className="mt-4">
|
|
<InputLabel forInput="password" value="Password" />
|
|
|
|
<TextInput
|
|
type="password"
|
|
name="password"
|
|
value={data.password}
|
|
className="mt-1 block w-full"
|
|
isFocused={true}
|
|
handleChange={onHandleChange}
|
|
/>
|
|
|
|
<InputError message={errors.password} className="mt-2" />
|
|
</div>
|
|
|
|
<div className="flex items-center justify-end mt-4">
|
|
<PrimaryButton className="ml-4" processing={processing}>
|
|
Confirm
|
|
</PrimaryButton>
|
|
</div>
|
|
</form>
|
|
</GuestLayout>
|
|
);
|
|
}
|