Centered Sign Up Card

Full-height centered registration card with social providers, name, email, and password fields (with show/hide), a terms checkbox, and a sign-in link. Perfect for SaaS sign-up pages that don't need a split layout.

FREE

Auth13: Centered Sign Up Card

Single-column registration screen centered in the viewport: a two-up row of social provider buttons above a divider, then dynamic name/email/password fields (with a show/hide toggle on the password), a terms checkbox, and a submit button, all inside one bordered card with a sign-in prompt underneath.

Free block

This block is free. No license or account is required: install it with the CLI and use it in unlimited projects.

Installation

Radix flavor

bash
npx shadcn add "https://ui.beste.co/r/auth13"

Base UI flavor

bash
npx shadcn add "https://ui.beste.co/r-base/auth13"

This installs the block to components/beste/block/auth13.tsx and the button, input, field, and checkbox shadcn/ui primitives it's built on.

Quick start

The installed file exports auth13Demo alongside the block: the exact props behind the preview above. Spread it to get a working sign-up screen in one line.

tsx
import { Auth13, auth13Demo } from "@/components/beste/block/auth13";

export default function SignUpPage() {
  return <Auth13 {...auth13Demo} />;
}

Then replace the demo with your own props. Written out, a trimmed setup looks like this:

tsx
import { Auth13 } from "@/components/beste/block/auth13";

export default function SignUpPage() {
  return (
    <Auth13
      heading="Create your account"
      description="Start building for free. No credit card required."
      fields={[
        { label: "Full name", placeholder: "Jane Cooper", type: "text" },
        { label: "Email", placeholder: "you@example.com", type: "email" },
        { label: "Password", placeholder: "Create a password", type: "password" },
      ]}
      signinPrompt={{ text: "Already have an account?", linkLabel: "Sign in", href: "/sign-in" }}
      labels={{ submit: "Create account" }}
    />
  );
}

Props

PropTypeDefaultDescription
headingstringCard title
descriptionstringSubtext below the heading
socialProvidersSocialProvider[][]Two-column button row above the divider
fieldsAuthField[][]Text inputs rendered in order, each with its own label/placeholder/type
labelsobject{}Divider, terms, submit, and toggle copy, see below
signinPrompt{ text: string; linkLabel: string; href: string }Line below the card, hidden entirely when not set
classNamestringExtra classes for the outer <section>
ts
type SocialProvider = { label: string; icon: React.ReactNode; href?: string };
type AuthField = { label: string; placeholder: string; type?: string };

type Auth13Labels = {
  divider?: string;
  terms?: string;
  submit?: string;
  passwordToggle?: string;
};

Behavior notes

Wiring the form up

This block ships the form markup only; state, validation, and submit are yours to add. Our guide wires the shadcn Field primitives to React Hook Form, TanStack Form, and Formisch on one field system.

More Auth blocks

View all Auth
FREE

auth1

Centered Sign In Card

Full-height centered sign-in screen with social login providers, email and password fields, a show/hide password toggle, remember-me checkbox, and forgot-password link. Perfect for SaaS apps, dashboards, and member portals.

FREE

auth2

Split-Screen Sign Up

Two-column registration screen pairing a sign-up form (social providers, name, email, password with show/hide, terms checkbox) with a full-bleed image showcase and customer testimonial. Includes a left/right image position toggle.

PRO

auth14

Enterprise SSO Sign In

Full-height single sign-on screen with a work-email field, a continue-with-SSO button, and Google and Microsoft providers below a divider. Perfect for B2B and enterprise apps that authenticate via identity providers.

PRO

auth37

Connect Wallet

Full-height web3 sign-in that lists wallet providers with icons, details, and a detected badge, plus a what-is-a-wallet helper link. Perfect for crypto and decentralized app authentication.

PRO

auth42

Invite Code Gate

Full-height invite-only gate with a centered code field and a request-an-invite link. Perfect for closed betas, early access, and gated launches.

PRO

auth17

Signed Out Confirmation

Full-height signed-out screen with a centered icon, a heading and message, a sign-back-in button, and a return-home link. Perfect for logout confirmations and expired-session pages.