mirror of
https://github.com/felipegcoutinho/openmonetis.git
synced 2026-06-09 23:06:01 +00:00
12 lines
293 B
TypeScript
12 lines
293 B
TypeScript
import { redirect } from "next/navigation";
|
|
import { SignupForm } from "@/features/auth/components/signup-form";
|
|
import { isSignupDisabled } from "@/shared/lib/auth/signup";
|
|
|
|
export default function SignupPage() {
|
|
if (isSignupDisabled()) {
|
|
redirect("/login");
|
|
}
|
|
|
|
return <SignupForm />;
|
|
}
|