mirror of
https://github.com/nihonbuzz/nihonbuzz-academy.git
synced 2026-01-26 13:32:07 +07:00
63 lines
3.4 KiB
TypeScript
63 lines
3.4 KiB
TypeScript
import GuestLayout from '@/Layouts/GuestLayout';
|
|
import { Head, Link, useForm } from '@inertiajs/react';
|
|
import { FormEventHandler } from 'react';
|
|
import { Button } from '@/Components/ui/button';
|
|
import { Card, CardContent, CardDescription, CardHeader, CardTitle } from '@/Components/ui/card';
|
|
import { Mail, LogOut, Send } from 'lucide-react';
|
|
|
|
export default function VerifyEmail({ status }: { status?: string }) {
|
|
const { post, processing } = useForm({});
|
|
|
|
const submit: FormEventHandler = (e) => {
|
|
e.preventDefault();
|
|
|
|
post(route('verification.send'));
|
|
};
|
|
|
|
return (
|
|
<GuestLayout>
|
|
<Head title="Verifikasi Email" />
|
|
|
|
<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">
|
|
<Mail className="w-6 h-6" />
|
|
</div>
|
|
<CardTitle className="text-2xl font-black tracking-tight text-foreground">
|
|
Verifikasi Akun
|
|
</CardTitle>
|
|
<CardDescription className="text-muted-foreground font-medium text-xs uppercase tracking-widest pt-2 px-4 leading-loose">
|
|
Terima kasih telah mendaftar! Sebelum memulai, silakan verifikasi alamat email Anda melalui tautan yang baru saja kami kirimkan.
|
|
</CardDescription>
|
|
</CardHeader>
|
|
<CardContent className="px-8 pb-10">
|
|
{status === 'verification-link-sent' && (
|
|
<div className="mb-6 p-4 rounded-2xl bg-green-500/10 border border-green-500/20 text-xs font-bold text-green-600 text-center animate-in fade-in slide-in-from-top-2">
|
|
Tautan verifikasi baru telah berhasil dikirim ke alamat email Anda.
|
|
</div>
|
|
)}
|
|
|
|
<form onSubmit={submit} className="space-y-6">
|
|
<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}>
|
|
Kirim Ulang Email Verifikasi <Send className="ml-2 w-4 h-4 group-hover:translate-x-1 group-hover:-translate-y-1 transition-transform" />
|
|
</Button>
|
|
</div>
|
|
|
|
<div className="text-center pt-2">
|
|
<Link
|
|
href={route('logout')}
|
|
method="post"
|
|
as="button"
|
|
className="text-muted-foreground font-black hover:text-nihonbuzz-red uppercase tracking-widest text-[10px] flex items-center justify-center gap-1 transition-colors"
|
|
>
|
|
<LogOut className="w-3 h-3" /> Keluar dari Sesi
|
|
</Link>
|
|
</div>
|
|
</form>
|
|
</CardContent>
|
|
</Card>
|
|
</GuestLayout>
|
|
);
|
|
}
|