42 lines
1.9 KiB
TypeScript
42 lines
1.9 KiB
TypeScript
import { store } from '@/actions/App/Http/Controllers/Auth/ConfirmablePasswordController';
|
|
import InputError from '@/components/input-error';
|
|
import { Button } from '@/components/ui/button';
|
|
import { Input } from '@/components/ui/input';
|
|
import { Label } from '@/components/ui/label';
|
|
import AuthLayout from '@/layouts/auth-layout';
|
|
import { Form, Head } from '@inertiajs/react';
|
|
import { LoaderCircle } from 'lucide-react';
|
|
import { useTranslation } from 'react-i18next';
|
|
|
|
export default function ConfirmPassword() {
|
|
const { t } = useTranslation('auth');
|
|
return (
|
|
<AuthLayout
|
|
title={t('auth.confirm.title', 'Confirm your password')}
|
|
description={t('auth.confirm.description', 'This is a secure area of the application. Please confirm your password before continuing.')}
|
|
>
|
|
<Head title={t('auth.confirm.title', 'Confirm password')} />
|
|
|
|
<Form {...store.form()} resetOnSuccess={['password']}>
|
|
{({ processing, errors }) => (
|
|
<div className="space-y-6">
|
|
<div className="grid gap-2">
|
|
<Label htmlFor="password">{t('auth.confirm.password', 'Password')}</Label>
|
|
<Input id="password" type="password" name="password" placeholder={t('auth.confirm.password_placeholder')} autoComplete="current-password" autoFocus />
|
|
|
|
<InputError message={errors.password} />
|
|
</div>
|
|
|
|
<div className="flex items-center">
|
|
<Button className="w-full" disabled={processing}>
|
|
{processing && <LoaderCircle className="h-4 w-4 animate-spin" />}
|
|
{t('auth.confirm.submit', 'Confirm password')}
|
|
</Button>
|
|
</div>
|
|
</div>
|
|
)}
|
|
</Form>
|
|
</AuthLayout>
|
|
);
|
|
}
|