/**
* UrbanFlow — templates.js
* Stores large HTML string templates extracted from shared.js and auth.js
*/
const TEMPLATES = {
authOverlay: `
`,
authGoogleBtn: `
`,
logoutModal: `
Sign Out
Are you sure you want to sign out of UrbanFlow?
`,
consentModal: `
`
};
function getPrivacyModalTemplate(p) {
return `
${p.title}
${p.subtitle}
${p.content}
`;
}
function getTermsModalTemplate(t) {
return `
${t.title}
${t.subtitle}
${t.content}
`;
}
function getShortcutsModalTemplate(rows) {
return `
Keyboard Shortcuts
Navigate faster with these shortcuts
${rows}
Press Esc to close
`;
};
function getOnboardFormTemplate(user) {
return `
`;
}