Ctrl K
Browse documentation

docs / components/sign-up

SignUp

Register users with the authentication methods enabled for an application.

Basic usage

sign-up-page.tsx
import { SignUp } from "@vulyo/nextjs";export default function SignUpPage() {  return (    <SignUp      signInUrl="/sign-in"      waitlistUrl="/waitlist"      fallbackRedirectUrl="/welcome"    />  );}

Properties

PropertyDescription
appearanceOverrides the provider-level appearance for this component.
signInUrlLocation of your sign-in page.
waitlistUrlLocation shown when access is waitlist-controlled.
fallbackRedirectUrlDefault destination after registration.
forceRedirectUrlAlways redirect here after registration.

Email verification

When email verification is required, SignUp begins the verification flow before a session is issued. Keep your configured verification and callback URLs on the same application origin.