docs / components/sign-in
SignIn
Render the complete sign-in experience for your application.
Basic usage
import { SignIn } from "@vulyo/nextjs";export default function SignInPage() { return ( <SignIn signUpUrl="/sign-up" waitlistUrl="/waitlist" fallbackRedirectUrl="/account" /> );}The enabled password, Google, and GitHub methods come from the application instance configured in the Vulyo dashboard.
Properties
| Property | Description |
|---|---|
| appearance | Overrides the provider-level appearance for this component. |
| signUpUrl | Location of your sign-up page. |
| waitlistUrl | Location of your waitlist page. |
| fallbackRedirectUrl | Destination used when no provider redirect is configured. |
| forceRedirectUrl | Always redirect here after sign-in. |
Redirect precedence
forceRedirectUrl takes priority over the provider-level afterSignInUrl. Use fallbackRedirectUrl when the component should supply a destination only when no stronger redirect is configured.