import { LayoutFragment } from "../../shared/ui/fragments.tsx"; export const LoginPageFragment = () => { return (

Welcome Back

Sign in securely using your biometric passkey or hardware key.

{/* Primary Biometric Hero Button */} {/* Loading Indicator */}
{/* Progressive Disclosure for Non-Resident Keys & Recovery */}
Advanced & Recovery Options

Only required if using legacy, non-discoverable security keys.

🔑 Lost device? Reconstruct account with Recovery Voucher
); }; export const RegisterPageFragment = ( { initialCode = "" }: { initialCode?: string }, ) => { return (

Create Account

Enroll a biometric passkey using your invitation token.

{/* Step 1: Registration Form */}
{/* Step 2: Emergency 12-Word Recovery Voucher */}
); }; export const RecoveryPageFragment = () => { return (

Account Recovery

Reconstruct your master secret and enroll a new replacement passkey.

); };