mirror of
https://gitea.gofwd.group/dstrawsb/ballistic-builder.git
synced 2025-12-05 18:26:45 -05:00
39 lines
980 B
TypeScript
39 lines
980 B
TypeScript
import {
|
|
Card,
|
|
CardContent,
|
|
CardDescription,
|
|
CardHeader,
|
|
CardTitle,
|
|
} from "@/components/ui/card";
|
|
import { redirect } from "next/navigation";
|
|
import { validateRequest } from "@/lib/auth/validate-request";
|
|
import { VerifyCode } from "./verify-code";
|
|
import { Paths } from "@/lib/constants";
|
|
|
|
export const metadata = {
|
|
title: "Verify Email",
|
|
description: "Verify Email Page",
|
|
};
|
|
|
|
export default async function VerifyEmailPage() {
|
|
const { user } = await validateRequest();
|
|
|
|
if (!user) redirect(Paths.Login);
|
|
if (user.emailVerified) redirect(Paths.Dashboard);
|
|
|
|
return (
|
|
<Card className="w-full max-w-md">
|
|
<CardHeader>
|
|
<CardTitle>Verify Email</CardTitle>
|
|
<CardDescription>
|
|
Verification code was sent to <strong>{user.email}</strong>. Check
|
|
your spam folder if you can't find the email.
|
|
</CardDescription>
|
|
</CardHeader>
|
|
<CardContent>
|
|
<VerifyCode />
|
|
</CardContent>
|
|
</Card>
|
|
);
|
|
}
|