A single narrow card that asks only for an email, then replaces itself in place with a sent state that echoes the address back and offers to start again with another one.
A single narrow card that asks only for an email, then replaces itself in place with a sent state that echoes the address back and offers to start again with another one.
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.
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
npx shadcn add "https://ui.beste.co/r/auth53?email=YOUR_EMAIL&license_key=YOUR_KEY"Base UI flavor
npx shadcn add "https://ui.beste.co/r-base/auth53?email=YOUR_EMAIL&license_key=YOUR_KEY"This installs the block to components/beste/block/auth53.tsx, the badge6 component used for the eyebrow, and the shadcn/ui input and button primitives behind the form.
The installed file exports auth53Demo alongside the block: the exact props behind the preview above. Spread it to get a working sign-in card in one line.
import { Auth53, auth53Demo } from "@/components/beste/block/auth53";
export default function SignInPage() {
return <Auth53 {...auth53Demo} />;
}Then replace the demo with your own props. Written out, a trimmed setup looks like this:
import { Auth53 } from "@/components/beste/block/auth53";
export default function SignInPage() {
return (
<Auth53
eyebrow="Members"
heading="Sign in without a password"
description="Type the address you subscribed with and we will send a link."
label="Email address"
placeholder="you@studio.com"
submitLabel="Send me a link"
sentHeading="Check your inbox"
sentDescription="The link works once and expires in fifteen minutes."
resendLabel="Use a different address"
help={{ label: "Not sure which address you used?", href: "/help/address" }}
note="Members get the archive in full."
/>
);
}| Prop | Type | Default | Description |
|---|---|---|---|
eyebrow | string | – | Badge6 label at the top of the card |
heading | string | – | Card heading |
description | string | – | What will happen next |
label | string | – | Accessible label on the field |
placeholder | string | – | Placeholder in the field |
submitLabel | string | – | Label on the submit button |
sentHeading | string | – | Heading of the sent state |
sentDescription | string | – | Line after the echoed address |
resendLabel | string | – | Button that returns to the form |
help | HelpLink | – | Link under the form |
note | string | – | Line under the card |
className | string | – | Extra classes for the outer section |
type HelpLink = {
label: string;
href: string;
};FormData and echoed back in the sent state, which is what lets a reader catch a typo before waiting for an email.resendLabel clears it and returns to the form.email and required, so validation happens in the browser before the handler runs.auth51
A centered passwordless card that advances in place from a work email step with an SSO fallback to a monospace one-time-code entry with resend and go-back controls.
auth34
Full-height progressive sign-in that asks for the email first, then reveals the password step with the chosen email shown and editable. Perfect for modern email-first and adaptive authentication flows.
auth6
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.
auth21
Full-height passwordless sign-in screen with a fingerprint icon, a continue-with-passkey button, and a password fallback below a divider. Perfect for WebAuthn and biometric authentication flows.