Choose Your Plan

Full-height plan selection step with a monthly/annual billing toggle and selectable plan cards that update their pricing live, plus a continue button. Perfect for paid sign-up and upgrade flows.

PRO

Auth26: Choose Your Plan

Full-height plan selection step: a monthly/annual billing toggle above a bordered card of selectable plan cards, each showing a name, description, optional badge, and a price that updates live with the billing toggle, followed by a continue button. Built for paid sign-up and upgrade flows.

Upgrade to Pro

Pro blocks install through the shadcn CLI with your license key and ship their full source. Docs and live previews stay open to everyone, so you can read every block's details first.

Installation

Swap YOUR_EMAIL and YOUR_KEY for the email and license key on your account. Find your license key on your account page.

Radix flavor

bash
npx shadcn add "https://ui.beste.co/r/auth26?email=YOUR_EMAIL&license_key=YOUR_KEY"

Base UI flavor

bash
npx shadcn add "https://ui.beste.co/r-base/auth26?email=YOUR_EMAIL&license_key=YOUR_KEY"

This installs the block to components/beste/block/auth26.tsx and the button, radio-group, tabs, field, and badge shadcn/ui primitives it's built on.

Quick start

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

tsx
import { Auth26, auth26Demo } from "@/components/beste/block/auth26";

export default function ChoosePlanPage() {
  return <Auth26 {...auth26Demo} />;
}

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

tsx
import { Auth26 } from "@/components/beste/block/auth26";

export default function ChoosePlanPage() {
  return (
    <Auth26
      heading="Choose your plan"
      description="Start free and upgrade as your team grows."
      billingOptions={[
        { value: "monthly", label: "Monthly", priceSuffix: "/month" },
        { value: "annual", label: "Annual", priceSuffix: "/year" },
      ]}
      defaultBilling="monthly"
      plans={[
        { value: "starter", name: "Starter", description: "For individuals.", price: { monthly: "$0", annual: "$0" } },
        { value: "pro", name: "Pro", description: "For small teams.", price: { monthly: "$12", annual: "$120" }, badge: "Popular" },
      ]}
      labels={{ submit: "Continue" }}
    />
  );
}

Props

PropTypeDefaultDescription
headingstringScreen title
descriptionstringSubtext below the heading
billingOptionsBillingOption[][]Tabs shown above the plan list; hidden entirely when empty
defaultBillingstringInitial billing tab value; falls back to the first billingOptions entry
plansPlan[][]Selectable plan cards
labelsobject{}Submit button copy, see below
footerPrompt{ text: string; linkLabel: string; href: string }Line below the card; hidden entirely when not set
classNamestringExtra classes for the outer <section>
ts
type BillingOption = { value: string; label: string; priceSuffix: string };

type Plan = {
  value: string;
  name: string;
  description: string;
  price: Record<string, string>;
  badge?: string;
};

type Auth26Labels = { submit?: 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
PRO

auth11

Account Type Selection

Full-height onboarding step where the user picks an account type from selectable radio cards with icons and descriptions, then continues. Perfect for tailoring sign-up flows by persona or plan.

PRO

auth46

Confirm It's You

Full-height step-up authentication screen that re-asks for the password before a sensitive action, showing the signed-in account and a cancel option. Perfect for protecting billing, security, and destructive actions.

PRO

auth39

Enable Two-Factor

Full-height security setup step where the user picks a two-factor method from selectable cards (authenticator app, SMS, or security key), with a skip option. Perfect for guiding users through enabling 2FA.

FREE

auth13

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

auth7

Account Chooser

Full-height account picker that lists saved accounts with avatars, names, and emails, plus a use-another-account row. Perfect for multi-account apps, SSO hubs, and returning-user sign-in.

PRO

auth33

Multi-Step Sign Up Wizard

Full-height multi-step registration with a numbered progress stepper that advances as the user moves through account, profile, and workspace steps, with back and continue controls. Perfect for guided onboarding sign-up.