Keks notice!

This commit is contained in:
2025-09-05 07:42:07 +02:00
parent b0b5149069
commit 4d00be8127
24 changed files with 1810 additions and 7 deletions

View File

@@ -94,6 +94,16 @@ function setupEventListeners() {
// Handle Google OAuth
document.getElementById('googleSignInBtn').addEventListener('click', signInWithGoogle);
// Cookie settings button
const cookieSettingsBtn = document.getElementById('cookie-settings-footer');
if (cookieSettingsBtn) {
cookieSettingsBtn.addEventListener('click', function() {
if (window.cookieConsent) {
window.cookieConsent.resetConsent();
}
});
}
// Handle login
document.getElementById('loginFormElement').addEventListener('submit', async (e) => {
e.preventDefault();