import GuestLayout from "@/layouts/guest-layout";
import { Head, Link, useForm } from "@inertiajs/react";
import { FormEventHandler } from "react";
import { Button } from "@/components/ui/button";
import {
Card,
CardContent,
CardDescription,
CardHeader,
} from "@/components/ui/card";
export default function VerifyEmail({ status }: { status?: string }) {
const { post, processing } = useForm({});
const submit: FormEventHandler = (e) => {
e.preventDefault();
post(route("verification.send"));
};
return (
Thanks for signing up! Before getting started, could you
verify your email address by clicking on the link we
just emailed to you? If you didn't receive the email, we
will gladly send you another.
{status === "verification-link-sent" && (
A new verification link has been sent to the email
address you provided during registration.