Complete Your Profile

Complete your profile

Add a few details so teammates can recognize you.

Brief description for your profile. Max 160 characters.

Want to do this later? Skip for now

About this block

Complete Your ProfilePRO

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.

Auth24: Complete Your Profile

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.

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

Base UI flavor

bash
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.

Quick start

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.

tsx
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:

tsx
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" }}
    />
  );
}

Props

PropTypeDefaultDescription
headingstringScreen title
descriptionstringSubtext below the heading
avatar{ src: string; alt: string }Current avatar image; falls back to a user-icon placeholder when not set
labelsobject{}Field, button, and helper copy, see below
skipPrompt{ text: string; linkLabel: string; href: string }Line below the card; hidden entirely when not set
classNamestringExtra classes for the outer <section>
ts
type Auth24Labels = {
  upload?: string;
  name?: string;
  namePlaceholder?: string;
  bio?: string;
  bioPlaceholder?: string;
  bioDescription?: string;
  submit?: string;
};

Behavior notes

  • This block has no 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.
  • The camera badge over the avatar is a plain <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.
  • The <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.
  • The name field and bio field each render only when their respective 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.
  • The bio field's helper text (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.

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

auth43

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

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

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

auth48

Security Question Setup

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.

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.