Initial commit

This commit is contained in:
2025-08-04 14:35:38 +02:00
commit 14f62bce69
8 changed files with 1465 additions and 0 deletions

17
assets/script.js Normal file
View File

@ -0,0 +1,17 @@
function toggleOverlay(id) {
document.getElementById(id).style.display = 'flex';
['zusage', 'absage'].forEach(otherId => {
if (otherId !== id) {
document.getElementById(otherId).style.display = 'none';
}
});
}
document.querySelectorAll('.overlay').forEach(overlay => {
overlay.addEventListener('click', function (e) {
if (e.target === overlay) {
overlay.style.display = 'none';
}
});
});