mirror of
https://github.com/documenso/documenso.git
synced 2025-11-18 18:51:37 +10:00
29 lines
724 B
TypeScript
29 lines
724 B
TypeScript
import { redirect } from 'react-router';
|
|
|
|
import { IS_GOOGLE_SSO_ENABLED, IS_OIDC_SSO_ENABLED } from '@documenso/lib/constants/auth';
|
|
import { env } from '@documenso/lib/utils/env';
|
|
|
|
import { SignUpForm } from '~/components/forms/signup';
|
|
|
|
export function meta() {
|
|
return [{ title: 'Sign Up' }];
|
|
}
|
|
|
|
export function loader() {
|
|
const NEXT_PUBLIC_DISABLE_SIGNUP = env('NEXT_PUBLIC_DISABLE_SIGNUP');
|
|
|
|
if (NEXT_PUBLIC_DISABLE_SIGNUP === 'true') {
|
|
throw redirect('/signin');
|
|
}
|
|
}
|
|
|
|
export default function SignUp() {
|
|
return (
|
|
<SignUpForm
|
|
className="w-screen max-w-screen-2xl px-4 md:px-16 lg:-my-16"
|
|
isGoogleSSOEnabled={IS_GOOGLE_SSO_ENABLED}
|
|
isOIDCSSOEnabled={IS_OIDC_SSO_ENABLED}
|
|
/>
|
|
);
|
|
}
|