12345678910111213141516171819202122232425262728293031323334353637 |
- import { Form, Head } from '@inertiajs/react';
- import { LoaderCircle } from 'lucide-react';
- import EmailVerificationNotificationController from '@/actions/App/Http/Controllers/Auth/EmailVerificationNotificationController';
- import { TextLink } from '@/common/TextLink';
- import AuthLayout from '@/pages/layouts/AuthLayout';
- import { logout } from '@/routes';
- import { Button } from '@/shadcn/button';
- export default function VerifyEmailPage({ status }: { status?: string }) {
- return (
- <AuthLayout title="Verify email" description="Please verify your email address by clicking on the link we just emailed to you.">
- <Head title="Email verification" />
- {status === 'verification-link-sent' && (
- <div className="mb-4 text-center text-sm font-medium text-green-600">
- A new verification link has been sent to the email address you provided during registration.
- </div>
- )}
- <Form {...EmailVerificationNotificationController.store.form()} className="space-y-6 text-center">
- {({ processing }) => (
- <>
- <Button disabled={processing} variant="secondary">
- {processing && <LoaderCircle className="h-4 w-4 animate-spin" />}
- Resend verification email
- </Button>
- <TextLink href={logout()} className="mx-auto block text-sm">
- Log out
- </TextLink>
- </>
- )}
- </Form>
- </AuthLayout>
- );
- }
|