mirror of
https://github.com/nihonbuzz/nihonbuzz-academy.git
synced 2026-01-26 05:25:37 +07:00
60 lines
2.4 KiB
TypeScript
60 lines
2.4 KiB
TypeScript
import InputError from '@/Components/InputError';
|
|
import GuestLayout from '@/Layouts/GuestLayout';
|
|
import { Head, useForm } from '@inertiajs/react';
|
|
import { FormEventHandler } from 'react';
|
|
import { Button } from '@/Components/ui/button';
|
|
import { Input } from '@/Components/ui/input';
|
|
import { Label } from '@/Components/ui/label';
|
|
|
|
export default function ConfirmPassword() {
|
|
const { data, setData, post, processing, errors, reset } = useForm({
|
|
password: '',
|
|
});
|
|
|
|
const submit: FormEventHandler = (e) => {
|
|
e.preventDefault();
|
|
|
|
post(route('password.confirm'), {
|
|
onFinish: () => reset('password'),
|
|
});
|
|
};
|
|
|
|
return (
|
|
<GuestLayout>
|
|
<Head title="Confirm Password" />
|
|
|
|
<div className="flex flex-col items-center justify-center py-12 px-4 sm:px-6 lg:px-8">
|
|
<div className="w-full max-w-md">
|
|
<div className="card-glass rounded-3xl p-8">
|
|
<div className="mb-6 text-sm text-gray-600 dark:text-gray-400">
|
|
This is a secure area of the application. Please confirm your
|
|
password before continuing.
|
|
</div>
|
|
|
|
<form onSubmit={submit} className="space-y-6">
|
|
<div className="space-y-2">
|
|
<Label htmlFor="password">Password</Label>
|
|
<Input
|
|
id="password"
|
|
type="password"
|
|
name="password"
|
|
value={data.password}
|
|
className="block w-full"
|
|
onChange={(e) => setData('password', e.target.value)}
|
|
/>
|
|
<InputError message={errors.password} />
|
|
</div>
|
|
|
|
<div className="flex items-center justify-end">
|
|
<button className="btn btn-primary w-full h-auto py-3 rounded-xl shadow-sm font-bold text-white" disabled={processing}>
|
|
Confirm
|
|
</button>
|
|
</div>
|
|
</form>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</GuestLayout>
|
|
);
|
|
}
|