import { CardContent, CardHeader } from "@/components/ui/card"; import { TooltipProvider } from "@/components/ui/tooltip"; import { ForgotPasswordForm } from "@/components/wrappers/auth/login/forgot-password-form/forgot-password-form"; import { env } from "@/env.mjs"; import { CardAuth } from "@/features/layout/card-auth"; import { redirect } from "next/navigation"; export default async function RoutePage(props: { searchParams: Promise<{ callbackUrl: string | undefined }> }) { if (env.AUTH_EMAIL_PASSWORD_ENABLED !== "true") { redirect("/login"); } return (

Reset password

Enter your email address and we'll send you a link to reset your password.

); }