// src/auth/login-page.ts export interface LoginPageParams { redirectUri: string; state?: string; codeChallenge: string; clientId: string; scopes: string[]; resource?: string; error?: string; } export function renderLoginPage(params: LoginPageParams): string { const error = params.error ? `
Sign in to access your trading data
${error}