Auth Magic Link
Passwordless login split screen: blue product panel with staggered pipeline cards (desktop), huge uppercase headline, single email field and yellow send button, then a 'Check your inbox' state with open-mail and retry actions.
brutalist/layout/auth-magic-linkSource
"use client";
import { useId, useState, type FormEvent } from "react";
import { cn } from "@/lib/utils";
export interface AuthMagicLinkProps {
brand?: string;
title?: string;
subtitle?: string;
onSend?: (email: string) => void | Promise<void>;
className?: string;
}
export function AuthMagicLink({
brand = "Shipyard",
title = "No passwords here.",
subtitle = "Enter your work email and we'll send you a one-click login link.",
onSend,
className,
}: AuthMagicLinkProps) {
const id = useId();
const [email, setEmail] = useState("");
const [state, setState] = useState<"idle" | "sending" | "sent">("idle");
async function submit(e: FormEvent<HTMLFormElement>) {
e.preventDefault();
setState("sending");
await onSend?.(email);
setState("sent");
}
return (
<div className={cn("grid min-h-full bg-da-bg text-da-fg lg:grid-cols-[1fr_1.1fr]", className)}>
<div aria-hidden className="da-stroke-b lg:da-stroke-r relative hidden overflow-hidden bg-da-secondary p-10 text-da-secondary-fg lg:block lg:border-b-0">
<p className="font-da-display text-3xl tracking-da-display uppercase">{brand}</p>
<div className="absolute inset-x-10 bottom-10 grid gap-3">
{["Merged: feature/ai-summaries", "Drafted: v4.2.0 release notes", "Published: changelog · widget · slack"].map((l, i) => (
<p key={l} className="da-stroke bg-da-surface px-4 py-3 font-da-mono text-sm font-bold text-da-surface-fg shadow-da-sm" style={{ marginLeft: `${i * 2}rem` }}>
{l}
</p>
))}
</div>
</div>
<div className="flex flex-col justify-center px-6 py-16 sm:px-16">
<p className="font-da-display text-2xl tracking-da-display uppercase lg:hidden">{brand}</p>
{state === "sent" ? (
<div role="status" className="mt-8 lg:mt-0">
<p className="da-stroke inline-block rotate-2 bg-da-success px-3 py-1 font-da-mono text-xs font-bold text-da-success-fg uppercase shadow-da-sm">Link sent</p>
<h1 className="mt-6 font-da-display text-5xl leading-none tracking-da-display uppercase">Check your inbox.</h1>
<p className="mt-4 text-lg text-da-muted-fg">
We sent a login link to <strong className="text-da-fg">{email}</strong>. It works once and expires in 15 minutes.
</p>
<div className="mt-8 flex flex-wrap gap-3">
<a href="https://mail.google.com" className="da-focus da-stroke bg-da-fg px-5 py-3 font-bold text-da-bg shadow-da-sm">
Open Gmail
</a>
<button type="button" onClick={() => setState("idle")} className="da-focus da-stroke bg-da-surface px-5 py-3 font-bold text-da-surface-fg">
Use another email
</button>
</div>
</div>
) : (
<>
<h1 className="mt-8 font-da-display text-5xl leading-none tracking-da-display uppercase lg:mt-0">{title}</h1>
<p className="mt-4 max-w-md text-lg text-da-muted-fg">{subtitle}</p>
<form onSubmit={submit} className="mt-8 grid max-w-md gap-3">
<label htmlFor={id} className="font-da-mono text-xs font-bold tracking-da-label uppercase">
Work email
</label>
<input
id={id}
type="email"
required
autoComplete="email"
value={email}
onChange={(e) => setEmail(e.target.value)}
placeholder="you@company.com"
className="da-focus da-stroke h-14 bg-da-input px-4 text-lg text-da-fg shadow-da-sm"
/>
<button type="submit" disabled={state === "sending"} className="da-focus da-stroke h-14 bg-da-primary text-lg font-bold text-da-primary-fg shadow-da-md hover:translate-x-[6px] hover:translate-y-[6px] hover:shadow-none disabled:opacity-60">
{state === "sending" ? "Sending…" : "Email me a login link"}
</button>
</form>
</>
)}
</div>
</div>
);
}
export default AuthMagicLink;
modules/brutalist/layout/auth-magic-link/index.tsx
Props
| Prop | Type | Default | Description |
|---|---|---|---|
| brand / title / subtitle | string | — | Copy. |
| onSend | (email: string) => void | Promise<void> | — | Sends the link; awaited before showing the sent state. |
| className | string | — | Classes on the root. |
Other auth screen variants in Brutalist
Auth Card
Centered login card on a dotted paper background: tilted wordmark sticker, ink title band, GitHub button, email + password with forgot link, error slot and a big pressable yellow submit.
Auth Screen
Split sign-in / sign-up page: form column with GitHub & Google buttons, email + password (show/hide), remember-me, error slot and pending state; yellow grid panel with a big customer quote on desktop.
Auth Signup Steps
Three-step signup wizard: ruled step tabs (done in ink, current in yellow) fused to a card with account fields, team size and use-case tile choices, Back/Continue and a success state.
Auth screen in other art directions
Auth Floating
Sign-up screen: centered glass card (Google button, divider, email magic-link form with success state) surrounded on desktop by floating, bobbing glass preview cards and a gradient orb.
Auth Onboarding
Three-step onboarding glass card: workspace name with URL preview, role radio chips, calendar connection buttons; gradient progress bar, back/continue and a finish screen.
Auth Passkey
Passkey sign-in glass card: glowing gradient fingerprint orb, account email, ‘Sign in with passkey’ with waiting / success / error states and email-link or password fallbacks.
Auth Screen
Centered 40px-blur glass panel over the mesh and two soft orbs: gradient logo, Google/Microsoft buttons, email + password (show/hide), forgot link, error slot, gradient pill submit. Sign-in and sign-up modes.
Auth Screen
Centered passwordless login in three steps: provider choice (Google, email, SAML SSO) → email form → "check your email" confirmation. Faint indigo glow on top, legal footer.
Auth Split
Split sign-in screen: form on the left (email, password with reveal, remember me, error alert) and an always-dark brand panel with indigo glow, grid, customer quote and three stats on large screens.
Auth Sso
SSO-first sign-in card on a tinted page: key icon, Google / GitHub / Microsoft buttons, an ‘or use SAML SSO’ divider and work-email discovery with inline arrow submit, legal links below.
Auth Verify
Email verification screen: mail icon, six single-digit mono boxes (split 3 + 3) with auto-advance, paste, arrow/backspace navigation, auto-submit, error and success states and a resend countdown.
Auth Centered
Minimal centered sign-in with lots of air: logo, small title, two hairline-boxed fields stacked edge to edge, ink button, “or continue with” text links and a mono legal line at the very bottom.
Auth Magic
Passwordless: a huge “Enter your email” prompt with a single oversized underline input and ↵ button; after submit, a large confirmation with the address and a mono resend link.
Auth Screen
Split sign-in: the left half is an ink panel with a large statement and mono footer; the right half holds a minimal underline form (email, password), an ink button and text links. Panel hides on mobile.
Auth Steps
Three-step sign-up with an index header “01 / 03 — Your account” and segmented hairline progress; underline fields per step, Back text link and ink Continue; final step shows the site address preview.
Auth Screen
Centered sign-in card on a surface-2 page: logo, Google + SSO buttons, “or” divider, email/password (show/hide toggle, forgot link), remember me, blue submit, sign-up link and legal footer.
Auth Split
Split sign-up page: form on the left (name, work email, company, password with live strength checklist), blue gradient panel on the right with benefits, a customer quote and compliance badges (panel hidden below lg).
Auth Sso
Enterprise SSO sign-in: email-first step that detects the domain; SSO domains show the org + identity provider and a “Continue with Okta” button, others fall back to a password field.
Auth Verify
Two-factor verification screen: shield icon, 6 separate digit boxes (auto-advance, backspace, paste support), error/success states, resend with 30s countdown and “use a recovery code” link.
Auth Magic
Passwordless sign-in: one rounded email field and “Send me a link”, then a gentle sent state with an open-envelope in a sage circle, the address, resend and change-email links.
Auth Onboarding
Post-signup onboarding: two gentle steps (industry as pill radio cards, goals as check cards) with a leaf progress bar, back/continue pills and a warm “all set” finish.
Auth Screen
Centered sign-in on cream with two soft blobs behind a rounded card: serif welcome, filled inputs, password reveal, sage pill submit, Google alternative and a sign-up link.
Auth Split
Split sign-up: form on cream (name, email, company, team-size pills) and an arch-topped landscape illustration panel with sun and hills plus a quote card (hidden below lg).
Auth Magic
“Check your inbox” screen: flat envelope with a gently bobbing letter, email in bold, Gmail/Outlook shortcut pills, resend with countdown and change-email link.
Auth Screen
Centered friendly sign-in: big rounded white card among pastel shapes, shape logo, Google button, rounded divider, soft email/password fields with reveal, error alert and periwinkle pill.
Auth Split
Sign-up split: lavender panel with a flat illustration of tilted task cards and perk list on large screens, roomy name + email form with a success message on the other side.
Auth Welcome
First-run profile setup: big live avatar preview, grid of pastel emoji avatars (native radios), display-name field with preview chip and a “Let’s go” button enabled once named.