Altair
Sign in to see your upcoming sessions, read your notes, or move a slot.
New here? Book a first conversation instead
Your notes are only ever visible to you and your practitioner.
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.
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.
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/auth54?email=YOUR_EMAIL&license_key=YOUR_KEY"Base UI flavor
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.
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.
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:
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.",
}}
/>
);
}| Prop | Type | Default | Description |
|---|---|---|---|
brand | string | – | Wordmark at the top of the form column |
heading | string | – | Greeting, rendered as the page h1 through Text1 |
description | string | – | Line under the greeting |
form | Auth54Form | – | Every 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 |
className | string | – | Extra classes for the outer <section> |
type Auth54Form = {
email: string;
password: string;
button: string;
forgot: string;
forgotHref: string;
};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.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.md up. Its scroll drift measures a column that is display: none below that, where progress simply stays at zero and nothing moves.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.from-foreground/70 gradient rather than over the raw photograph, which is what keeps it readable whatever the image underneath happens to be.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.
auth49
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.
auth50
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.
auth32
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.
auth9
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.