Skip to content

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

organic-soft/layout/auth-split
Open ↗

Source

"use client";

import { useState, type FormEvent } from "react";
import { cn } from "@/lib/utils";

export interface AuthSplitProps {
  brand?: string;
  brandHref?: string;
  quote?: { text: string; name: string };
  onSubmit?: (data: { name: string; email: string; company: string }) => void;
  className?: string;
}

function GroveMark({ className }: { className?: string }) {
  return (
    <svg aria-hidden viewBox="0 0 32 32" className={cn("size-8 shrink-0", className)}>
      <circle cx="16" cy="16" r="16" fill="var(--da-primary)" />
      <path d="M16 25V13" stroke="var(--da-primary-fg)" strokeWidth="2" strokeLinecap="round" />
      <path d="M16 17c-4 0-6.5-2.6-6.5-6.5 4 0 6.5 2.6 6.5 6.5Z" fill="var(--da-primary-fg)" opacity=".85" />
      <path d="M16 14c3.6 0 6-2.3 6-6-3.6 0-6 2.3-6 6Z" fill="var(--da-primary-fg)" />
    </svg>
  );
}

/** 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). */
export function AuthSplit({
  brand = "Grove",
  brandHref = "/",
  quote = { text: "Our first footprint took an afternoon, not a quarter.", name: "Tomás · Casa Verde Foods" },
  onSubmit,
  className,
}: AuthSplitProps) {
  const [size, setSize] = useState("11–50");
  const submit = (e: FormEvent<HTMLFormElement>) => {
    e.preventDefault();
    const f = new FormData(e.currentTarget);
    onSubmit?.({ name: String(f.get("name")), email: String(f.get("email")), company: String(f.get("company")) });
  };
  const field = "da-transition h-12 w-full rounded-da-md bg-da-surface-2 px-4 font-normal outline-none focus:bg-da-surface focus:ring-3 focus:ring-da-ring";
  return (
    <main className={cn("grid min-h-dvh bg-da-bg text-da-fg lg:grid-cols-2", className)}>
      <div className="flex flex-col px-6 py-8 sm:px-14">
        <a href={brandHref} className="da-focus inline-flex w-fit items-center gap-2.5 rounded-da-pill font-da-display text-2xl">
          <GroveMark />
          {brand}
        </a>
        <div className="mx-auto my-auto w-full max-w-md py-10">
          <h1 className="font-da-display text-4xl leading-tight">
            Start growing <em className="text-da-primary">lighter</em>
          </h1>
          <p className="mt-2 text-da-muted-fg">Free for 30 days. No card, no consultant.</p>
          <form onSubmit={submit} className="mt-8 grid gap-4">
            <label className="grid gap-2 font-medium">
              Your name
              <input name="name" required autoComplete="name" className={field} />
            </label>
            <label className="grid gap-2 font-medium">
              Work email
              <input name="email" type="email" required autoComplete="email" className={field} />
            </label>
            <label className="grid gap-2 font-medium">
              Company
              <input name="company" required autoComplete="organization" className={field} />
            </label>
            <fieldset>
              <legend className="mb-2 font-medium">Team size</legend>
              <div className="flex flex-wrap gap-2">
                {["1–10", "11–50", "51–200", "200+"].map((s) => (
                  <label
                    key={s}
                    className={cn(
                      "da-transition cursor-pointer rounded-da-pill px-4 py-2 has-focus-visible:ring-3 has-focus-visible:ring-da-ring",
                      s === size ? "bg-da-primary text-da-primary-fg" : "bg-da-surface-2 hover:bg-da-muted",
                    )}
                  >
                    <input type="radio" name="size" value={s} checked={s === size} onChange={() => setSize(s)} className="sr-only" />
                    {s}
                  </label>
                ))}
              </div>
            </fieldset>
            <button
              type="submit"
              className="da-focus da-transition mt-3 h-12 rounded-da-pill bg-da-primary font-medium text-da-primary-fg hover:bg-da-primary/90"
            >
              Create my account
            </button>
          </form>
          <p className="mt-6 text-sm text-da-muted-fg">
            Already growing?{" "}
            <a href="#signin" className="da-focus rounded-da-sm font-medium text-da-primary underline underline-offset-4">
              Sign in
            </a>
          </p>
        </div>
      </div>
      <aside className="relative hidden p-6 lg:block">
        <div className="relative size-full overflow-hidden rounded-t-full rounded-b-da-lg bg-da-accent">
          <svg aria-hidden viewBox="0 0 400 600" preserveAspectRatio="xMidYMax slice" className="absolute inset-0 size-full">
            <circle cx="290" cy="200" r="54" fill="var(--da-secondary)" />
            <path d="M0 380c80-50 160-40 240-6s120 30 160 6v220H0Z" fill="color-mix(in oklab, var(--da-primary) 35%, var(--da-accent))" />
            <path d="M0 450c90-40 170-32 250 0s110 24 150 6v144H0Z" fill="color-mix(in oklab, var(--da-primary) 65%, var(--da-accent))" />
            <path d="M0 520c100-30 200-26 280 0 50 16 90 12 120 0v80H0Z" fill="var(--da-primary)" />
          </svg>
          <figure className="absolute inset-x-10 bottom-10 rounded-da-lg bg-da-surface p-6 text-da-surface-fg shadow-da-md">
            <blockquote className="font-da-display text-xl italic">“{quote.text}”</blockquote>
            <figcaption className="mt-3 text-sm text-da-muted-fg">{quote.name}</figcaption>
          </figure>
        </div>
      </aside>
    </main>
  );
}

export default AuthSplit;

modules/organic-soft/layout/auth-split/index.tsx

Props

PropTypeDefaultDescription
brandstring—Brand name.
brandHrefstring—Brand link target.
quote{ text: string; name: string }—Quote.
onSubmit(data: { name: string; email: string; company: string }) => void—Callback.
classNamestring—Extra classes on the root.

Other auth screen variants in Organic Soft

Auth screen in other art directions

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.

BrutalistAuth screen

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.

BrutalistAuth screen

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.

BrutalistAuth screen

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.

BrutalistAuth screen

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.

GlassAuth screen

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.

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

GlassAuth screen

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.

GlassAuth screen

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.

MinimalAuth screen

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.

MinimalAuth screen

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.

MinimalAuth screen

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.

MinimalAuth screen

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.

Mono CleanAuth screen

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.

Mono CleanAuth screen

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.

Mono CleanAuth screen

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.

Mono CleanAuth screen

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.

Neo CorporateAuth screen

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

Neo CorporateAuth screen

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.

Neo CorporateAuth screen

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.

Neo CorporateAuth screen

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.

Soft FlatAuth screen

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.

Soft FlatAuth screen

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.

Soft FlatAuth screen

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.

Soft FlatAuth screen