53 lines
2.1 KiB
TypeScript
53 lines
2.1 KiB
TypeScript
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 { store } from '@/routes/password/confirm';
|
|
import { Form, Head } from '@inertiajs/react';
|
|
import { LoaderCircle } from 'lucide-react';
|
|
|
|
export default function ConfirmPassword() {
|
|
return (
|
|
<AuthLayout
|
|
title="Confirm your password"
|
|
description="This is a secure area of the application. Please confirm your password before continuing."
|
|
>
|
|
<Head title="Confirm password" />
|
|
|
|
<Form {...store.form()} resetOnSuccess={['password']}>
|
|
{({ processing, errors }) => (
|
|
<div className="space-y-6">
|
|
<div className="grid gap-2">
|
|
<Label htmlFor="password">Password</Label>
|
|
<Input
|
|
id="password"
|
|
type="password"
|
|
name="password"
|
|
placeholder="Password"
|
|
autoComplete="current-password"
|
|
autoFocus
|
|
/>
|
|
|
|
<InputError message={errors.password} />
|
|
</div>
|
|
|
|
<div className="flex items-center">
|
|
<Button
|
|
className="w-full"
|
|
disabled={processing}
|
|
data-test="confirm-password-button"
|
|
>
|
|
{processing && (
|
|
<LoaderCircle className="h-4 w-4 animate-spin" />
|
|
)}
|
|
Confirm password
|
|
</Button>
|
|
</div>
|
|
</div>
|
|
)}
|
|
</Form>
|
|
</AuthLayout>
|
|
);
|
|
}
|