Some checks failed
Deploy to Cloudflare Workers / deploy (push) Has been cancelled
20 lines
621 B
TypeScript
20 lines
621 B
TypeScript
import { LoginPageShell } from "@/components/auth/login-form";
|
|
import { ForgotPasswordForm } from "@/components/auth/forgot-password-form";
|
|
import { YaltopiaFooter } from "@/components/layout/YaltopiaFooter";
|
|
|
|
export default function ManagerForgotPasswordPage() {
|
|
return (
|
|
<>
|
|
<LoginPageShell
|
|
title="Reset password"
|
|
subtitle="Team Manager — we will email you a secure link"
|
|
>
|
|
<ForgotPasswordForm portal="manager" />
|
|
</LoginPageShell>
|
|
<div className="mx-auto -mt-4 mb-8 w-full max-w-md px-4">
|
|
<YaltopiaFooter />
|
|
</div>
|
|
</>
|
|
);
|
|
}
|