Quiet Sign In

Altair

Welcomeback.

Sign in to see your upcoming sessions, read your notes, or move a slot.

New here? Book a first conversation instead

A long sandy beach with a boat on the horizon

Your notes are only ever visible to you and your practitioner.

About this block

Quiet Sign InPRO

A full-height sign-in split: wordmark, a serif greeting that settles in word by word, email and password fields with a full-width sliding-marker pill and a switch-to-booking line on the left, and a photograph that zooms out on load, then drifts slower than the page, with a serif reassurance over its foot on the right.

Auth54: Quiet Sign In

A full-height sign-in split: wordmark, a serif greeting that settles in word by word, email and password fields under a full-width pill, and a switch-to-booking line on one side; on the other a photograph that clears from a blur on load, drifts as the page scrolls, and carries a serif reassurance over its foot.

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

Base UI flavor

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

This installs the block to components/beste/block/auth54.tsx, the shadcn input and label primitives the form is built on, and the button22 sliding-marker pill and the text1 word stagger it uses.

Quick start

The installed file exports auth54Demo alongside the block: the exact props behind the preview above. Spread it to get a working sign-in screen in one line.

tsx
import { Auth54, auth54Demo } from "@/components/beste/block/auth54";

export default function Page() {
  return <Auth54 {...auth54Demo} />;
}

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

tsx
import { Auth54 } from "@/components/beste/block/auth54";

export default function Page() {
  return (
    <Auth54
      brand="Altair"
      heading="Welcome back."
      description="Sign in to see your upcoming sessions, read your notes, or move a slot."
      form={{
        email: "Email",
        password: "Password",
        button: "Sign in",
        forgot: "Forgotten your password?",
        forgotHref: "/reset",
      }}
      footer={{ text: "New here?", link: "Book a first conversation instead", href: "/book" }}
      image={{
        src: "/photos/lake.jpg",
        alt: "Morning mist lifting off a still lake below wooded hills",
        caption: "Your notes are only ever visible to you and your practitioner.",
      }}
    />
  );
}

Props

PropTypeDefaultDescription
brandstringWordmark at the top of the form column
headingstringGreeting, rendered as the page h1 through Text1
descriptionstringLine under the greeting
formAuth54FormEvery string in the form, plus the reset link target
footer{ text: string; link: string; href: string }Switch-to-booking line at the foot of the column
image{ src: string; alt: string; caption: string }Photograph and its caption in the right half
classNamestringExtra classes for the outer <section>
ts
type Auth54Form = {
  email: string;
  password: string;
  button: string;
  forgot: string;
  forgotHref: string;
};

Behavior notes

  • The heading runs with trigger="mount" rather than the component's default "view". A sign-in screen is above the fold by definition, so waiting for a scroll that never comes would leave the greeting invisible.
  • Field ids come from useId, so two of these on one page (a sign-in and a sign-up, say) never collide and every Label keeps pointing at its own input.
  • autoComplete is set to email and current-password, so password managers recognise the form rather than treating it as an unknown pair of fields.
  • The photograph is only mounted from md up. Its scroll drift measures a column that is display: none below that, where progress simply stays at zero and nothing moves.
  • It clears from blur(24px) and a 1.1 scale on decode, with a complete check on mount so a cached image is not left blurred waiting for an onLoad that already fired. The Tailwind scale-[1.2] on the same element writes the standalone scale property, so it composes with the animated transform instead of fighting it.
  • The caption sits over a from-foreground/70 gradient rather than over the raw photograph, which is what keeps it readable whatever the image underneath happens to be.
  • The submit button carries no handler and the form only calls preventDefault(), so nothing is posted anywhere until you wire it up.

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

auth49

Split Sign In With Quote

A hairline sign-in panel with a lowercase wordmark, email and password fields, an inline forgot link, a remember toggle, and an SSO fallback, set beside a full-height photo carrying a gradient customer quote.

PRO

auth50

Split Sign Up With Proof

A hairline sign-up panel carrying a lowercase wordmark, name, work email, and password fields with an SSO fallback and terms note, beside a soft column of checked benefits over an image tile that floats a live customer quote card.

PRO

auth32

Editorial Split Sign In

Two-column editorial sign-in pairing an oversized typographic brand panel with a clean email and password form. Stacks the panel above the form on mobile. Perfect for brands that want a minimal, editorial first impression.

PRO

auth9

Split-Screen Sign In

Two-column sign-in screen pairing a full sign-in form (social providers, email, password with show/hide, remember me) with a brand panel that lists product highlights. Includes a left/right panel position toggle.

PRO

auth29

Terminal Sign In

Full-height terminal-style sign-in rendered as a CLI window with a command prompt, a monospace email input, and a send-link action. Perfect for developer tools and CLI-first products.

FREE

auth2

Split-Screen Sign Up

Two-column registration screen pairing a sign-up form (social providers, name, email, password with show/hide, terms checkbox) with a full-bleed image showcase and customer testimonial. Includes a left/right image position toggle.