import { LIMITS } from '../config/limits'; export type JwtSecretState = 'missing' | 'default' | 'too_short'; export function renderRegisterPageHTML(jwtState: JwtSecretState | null): string { const jwtStateJson = JSON.stringify(jwtState); const defaultKdfIterations = LIMITS.auth.defaultKdfIterations; return `