/** * UrbanFlow — templates.js * Stores large HTML string templates extracted from shared.js and auth.js */ const TEMPLATES = { authOverlay: `

Sign In

Authenticate with your Google account to continue

`, authGoogleBtn: ` `, logoutModal: `

Sign Out

Are you sure you want to sign out of UrbanFlow?

`, consentModal: `

Before you continue

Please review and accept our policies to use UrbanFlow.

` }; function getPrivacyModalTemplate(p) { return ` `; } function getTermsModalTemplate(t) { return ` `; } function getShortcutsModalTemplate(rows) { return ` `; }; function getOnboardFormTemplate(user) { return `

Welcome

Choose a display name for your account

`; }