Join the Waitlist

Join the waitlist

Be the first to know when we open up. No spam, ever.

Join 4,200+ people already on the list.

Already have access? Sign in

About this block

Join the WaitlistPRO

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.

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.

Upgrade Now

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

  • The form has no submit handler beyond onSubmit={(e) => e.preventDefault()}, so the email is never read or sent anywhere; wiring capture (state, validation, a POST) is left entirely to the integrator.
  • The Input is uncontrolled with no value, name, required, or onChange, so its typed value is not tracked by the component at all.
  • Every text element is conditionally rendered: the icon badge, heading, description, the email FieldLabel, the submit Button, the socialProof line, and the whole signinPrompt block each only appear when their corresponding prop or label is provided.
  • labels defaults to {} and is destructured field by field, so omitting individual keys silently hides just that piece rather than throwing.
  • The email input's id is derived from React's useId() (`${fieldId}-email`) and paired to the FieldLabel via htmlFor, so the label-input association is unique per instance without any manual id prop.
  • The section is min-h-screen and centers its max-w-md column both axes, so the block always fills the viewport height regardless of content length.
  • signinPrompt.href is passed straight to a next/link <Link>, so it must be a valid Next.js route or absolute URL; there is no target or rel handling.

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

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

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.

FREE

auth6

Magic Link Sign In

Full-height passwordless sign-in screen with a single email field, a send-magic-link button, a helper note, and social login providers below a divider. Perfect for passwordless and email-link authentication flows.