Some checks failed
Deploy to Cloudflare Workers / deploy (push) Has been cancelled
12 lines
317 B
TypeScript
12 lines
317 B
TypeScript
import { SignupForm } from "@/components/auth/signup-form";
|
|
|
|
export default function MasterSignupPage() {
|
|
return (
|
|
<SignupForm
|
|
portalRole="league_master"
|
|
title="League Master signup"
|
|
description="Create an admin account to manage leagues, fixtures, and competitions."
|
|
/>
|
|
);
|
|
}
|