docs / components/sign-up
SignUp
Register users with the authentication methods enabled for an application.
Basic usage
import { SignUp } from "@vulyo/nextjs";export default function SignUpPage() { return ( <SignUp signInUrl="/sign-in" waitlistUrl="/waitlist" fallbackRedirectUrl="/welcome" /> );}Properties
| Property | Description |
|---|---|
| appearance | Overrides the provider-level appearance for this component. |
| signInUrl | Location of your sign-in page. |
| waitlistUrl | Location shown when access is waitlist-controlled. |
| fallbackRedirectUrl | Default destination after registration. |
| forceRedirectUrl | Always 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.