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.
Full-height profile setup step: a bordered card with an avatar and camera-badge upload trigger, a display-name field, a bio textarea with a helper description, and a save button, plus a skip-for-now link below the card. Built for the post-sign-up onboarding step where a new user personalizes their account.
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/auth24?email=YOUR_EMAIL&license_key=YOUR_KEY"Base UI flavor
npx shadcn add "https://ui.beste.co/r-base/auth24?email=YOUR_EMAIL&license_key=YOUR_KEY"This installs the block to components/beste/block/auth24.tsx and the button, input, field, avatar, and textarea shadcn/ui primitives it's built on.
The installed file exports auth24Demo alongside the block: the exact props behind the preview above. Spread it to get a working profile-setup screen in one line.
import { Auth24, auth24Demo } from "@/components/beste/block/auth24";
export default function CompleteProfilePage() {
return <Auth24 {...auth24Demo} />;
}Then replace the demo with your own props. Written out, a trimmed setup looks like this:
import { Auth24 } from "@/components/beste/block/auth24";
export default function CompleteProfilePage() {
return (
<Auth24
heading="Complete your profile"
description="Add a few details so teammates can recognize you."
avatar={{ src: "/avatars/placeholder.jpg", alt: "Your profile photo" }}
labels={{
upload: "Upload a profile photo",
name: "Display name",
namePlaceholder: "Jane Cooper",
bio: "Bio",
bioPlaceholder: "Tell us a little about yourself…",
submit: "Save and continue",
}}
skipPrompt={{ text: "Want to do this later?", linkLabel: "Skip for now", href: "/dashboard" }}
/>
);
}| Prop | Type | Default | Description |
|---|---|---|---|
heading | string | – | Screen title |
description | string | – | Subtext below the heading |
avatar | { src: string; alt: string } | – | Current avatar image; falls back to a user-icon placeholder when not set |
labels | object | {} | Field, button, and helper copy, see below |
skipPrompt | { text: string; linkLabel: string; href: string } | – | Line below the card; hidden entirely when not set |
className | string | – | Extra classes for the outer <section> |
type Auth24Labels = {
upload?: string;
name?: string;
namePlaceholder?: string;
bio?: string;
bioPlaceholder?: string;
bioDescription?: string;
submit?: string;
};icon prop; unlike its sibling auth screens the header above the card is just a heading and description, with an Avatar inside the card standing in as the primary visual instead.<button type="button"> with no onClick handler and no <input type="file"> behind it; it's a purely visual upload trigger (labeled by labels.upload as its aria-label) that the integrator has to wire up.<form> only calls e.preventDefault() on submit; there is no onSubmit prop and no wired network call, so the name/bio fields are fully uncontrolled and nothing captures their values until the integrator adds a handler.labels.name / labels.bio is set, and the submit button only renders when labels.submit is set, so any combination of the three rows can be dropped independently.labels.bioDescription) renders via FieldDescription beneath the Textarea, which is fixed at rows={3} regardless of content length.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.
auth16
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.
auth43
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.
auth25
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.
auth48
Full-height security question setup with a question select and an answer field, plus a skip option. Perfect for account recovery setup and identity verification fallbacks.
auth46
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.
auth11
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.