Yaltopia-FIFA/app/(auth)/forgot-password/master/page.tsx
Kirubel-Kibru-Yaltopia 89440985f1
Some checks failed
Deploy to Cloudflare Workers / deploy (push) Has been cancelled
x
2026-05-24 21:46:10 +03:00

20 lines
627 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 MasterForgotPasswordPage() {
return (
<>
<LoginPageShell
title="Reset password"
subtitle="League Master — we will email you a secure link"
>
<ForgotPasswordForm portal="league_master" />
</LoginPageShell>
<div className="mx-auto -mt-4 mb-8 w-full max-w-md px-4">
<YaltopiaFooter />
</div>
</>
);
}