Browse docs

<SignUp>

Create-account card — email, password, matching OAuth providers. Mirrors the <SignIn> visual language so the two flows feel like siblings.

Copy this quickstart guide as a prompt for LLMs to implement KolayLogin in your application.

Usage

import { SignUp } from '@kolaylogin/react';

export default function SignUpPage() {
  return <SignUp redirectUrl="/onboarding" />;
}

Props

  • redirectUrl — post-signup navigation target.
  • signInUrl — link to the sign-in card at the bottom.
  • title, subtitle — heading copy.
  • socialProviders — matches what you show on <SignIn>.
  • onSignUp(result) — callback with { userId, sessionId }.

Password policy is enforced by the instance — KolayLogin surfaces the exact error (password_too_short, password_requires_uppercase, etc.) in the card's error area.