Ctrl K
Browse documentation

docs / components/sign-in

SignIn

Render the complete sign-in experience for your application.

Basic usage

sign-in-page.tsx
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

PropertyDescription
appearanceOverrides the provider-level appearance for this component.
signUpUrlLocation of your sign-up page.
waitlistUrlLocation of your waitlist page.
fallbackRedirectUrlDestination used when no provider redirect is configured.
forceRedirectUrlAlways 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.