mirror of
https://github.com/nihonbuzz/nihonbuzz-academy.git
synced 2026-01-27 02:41:58 +07:00
67 lines
3.4 KiB
TypeScript
67 lines
3.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';
|
|
import { Card, CardContent, CardDescription, CardHeader, CardTitle } from '@/Components/ui/card';
|
|
import { Lock, ArrowRight } from 'lucide-react';
|
|
|
|
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="Konfirmasi Kata Sandi" />
|
|
|
|
<Card className="border-white/10 bg-white/40 dark:bg-black/40 backdrop-blur-2xl shadow-[0_24px_48px_-12px_rgba(0,0,0,0.1)] rounded-[2.5rem] overflow-hidden w-full max-w-md">
|
|
<CardHeader className="space-y-1 text-center pt-10 pb-6 px-8">
|
|
<div className="mx-auto w-12 h-12 bg-nihonbuzz-red/10 rounded-2xl flex items-center justify-center mb-4 text-nihonbuzz-red">
|
|
<Lock className="w-6 h-6" />
|
|
</div>
|
|
<CardTitle className="text-2xl font-black tracking-tight text-foreground">
|
|
Area Aman
|
|
</CardTitle>
|
|
<CardDescription className="text-muted-foreground font-medium text-xs uppercase tracking-widest pt-2 px-4 leading-loose">
|
|
Ini adalah area aman. Harap konfirmasi kata sandi Anda sebelum melanjutkan.
|
|
</CardDescription>
|
|
</CardHeader>
|
|
<CardContent className="px-8 pb-10">
|
|
<form onSubmit={submit} className="space-y-6">
|
|
<div className="space-y-2">
|
|
<Label htmlFor="password" className="text-[10px] font-black uppercase tracking-widest text-muted-foreground ml-1">Kata Sandi Anda</Label>
|
|
<Input
|
|
id="password"
|
|
type="password"
|
|
name="password"
|
|
value={data.password}
|
|
className="h-14 rounded-2xl bg-white/50 dark:bg-black/50 border-white/20 focus:ring-nihonbuzz-red/20 focus:border-nihonbuzz-red transition-all"
|
|
autoFocus
|
|
onChange={(e) => setData('password', e.target.value)}
|
|
/>
|
|
<InputError message={errors.password} />
|
|
</div>
|
|
|
|
<div className="pt-2">
|
|
<Button className="w-full h-16 rounded-[1.5rem] text-sm font-black shadow-2xl shadow-nihonbuzz-red/20 bg-nihonbuzz-red hover:bg-nihonbuzz-red/90 transition-all hover:scale-[1.02] active:scale-[0.98] group" disabled={processing}>
|
|
Konfirmasi & Lanjutkan <ArrowRight className="inline-block w-4 h-4 ml-1 group-hover:translate-x-1 transition-transform" />
|
|
</Button>
|
|
</div>
|
|
</form>
|
|
</CardContent>
|
|
</Card>
|
|
</GuestLayout>
|
|
);
|
|
}
|