Some checks failed
Deploy to Cloudflare Workers / deploy (push) Has been cancelled
12 lines
288 B
TypeScript
12 lines
288 B
TypeScript
import { SignupForm } from "@/components/auth/signup-form";
|
|
|
|
export default function ManagerSignupPage() {
|
|
return (
|
|
<SignupForm
|
|
portalRole="manager"
|
|
title="Team Manager signup"
|
|
description="For team managers in Yaltopia FIFA tournaments."
|
|
/>
|
|
);
|
|
}
|