Join the Waitlist

Full-height waitlist capture with an email field, a join button, a social-proof line, and a sign-in link for existing users. Perfect for pre-launch and early-access landing gates.

PRO

Auth43: Join the Waitlist

A full-height, vertically centered waitlist gate: an optional circular icon badge above a heading and description, a bordered card holding an email Input, a full-width submit Button, and a centered social-proof line, with a separate sign-in prompt linking existing users out below the card.

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/auth43?email=YOUR_EMAIL&license_key=YOUR_KEY"

Base UI flavor

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

This installs the block to components/beste/block/auth43.tsx, plus the button, input, and field shadcn/ui primitives it uses for the submit button, the email input, and the field group wrapping the label, description, and layout.

Quick start

The installed file exports auth43Demo alongside the block: the exact props behind the preview above. Spread it to get a working waitlist gate in one line.

tsx
import { Auth43, auth43Demo } from "@/components/beste/block/auth43";

export default function WaitlistPage() {
  return <Auth43 {...auth43Demo} />;
}

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

tsx
import { Sparkles } from "lucide-react";
import { Auth43 } from "@/components/beste/block/auth43";

export default function WaitlistPage() {
  return (
    <Auth43
      icon={<Sparkles className="size-6" />}
      heading="Join the waitlist"
      description="Be the first to know when we open up. No spam, ever."
      labels={{
        email: "Email",
        emailPlaceholder: "you@example.com",
        submit: "Join the waitlist",
        socialProof: "Join 4,200+ people already on the list.",
      }}
      signinPrompt={{ text: "Already have access?", linkLabel: "Sign in", href: "/login" }}
    />
  );
}

Props

PropTypeDefaultDescription
iconReact.ReactNodeOptional node shown inside the circular badge above the heading
headingstringCentered page heading
descriptionstringMuted sub-line under the heading
labels{ email?: string; emailPlaceholder?: string; submit?: string; socialProof?: string }{}Text for the email label, input placeholder, submit button, and social-proof line
signinPrompt{ text: string; linkLabel: string; href: string }Sign-in prompt rendered below the card as text plus a link
classNamestringExtra classes for the outer <section>
ts
type Labels = {
  email?: string;
  emailPlaceholder?: string;
  submit?: string;
  socialProof?: string;
};

type SigninPrompt = {
  text: string;
  linkLabel: string;
  href: 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

auth16

Team Invitation Accept

Full-height invitation acceptance screen showing the inviter's avatar and team name, a pre-filled disabled email, and name and password fields to set up the account. Perfect for team onboarding and invite-link flows.

PRO

auth24

Complete Your Profile

Full-height profile setup step with an avatar uploader, a display name field, and a bio textarea, plus a skip option. Perfect for the post-sign-up onboarding step where users personalize their account.

PRO

auth12

Email Confirmed Success

Full-height success screen with a large confirmation check, a heading and message, a primary continue button, and a support link. Perfect for the final step after email verification or account activation.

PRO

auth25

Claim Your Username

Full-height username picker with a prefixed input group, a live availability indicator, suggestion chips when a handle is taken, and a submit button that unlocks only when the name is free. Perfect for onboarding handle selection.

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.