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

@@ -164,6 +164,18 @@ if (accessToken && refreshToken) {
setSession();
}
// Add cookie settings button functionality
document.addEventListener('DOMContentLoaded', function() {
const cookieSettingsBtn = document.getElementById('cookie-settings-footer');
if (cookieSettingsBtn) {
cookieSettingsBtn.addEventListener('click', function() {
if (window.cookieConsent) {
window.cookieConsent.resetConsent();
}
});
}
});
// Passwort-Sicherheitshinweise
newPasswordInput.addEventListener('input', function() {
const password = this.value;