fix graphic interface again !!
All checks were successful
Deploy / trigger (push) Successful in 23s

This commit is contained in:
2026-03-28 11:33:03 +01:00
parent d371b504f5
commit b8f0ba86e1
7 changed files with 180 additions and 43 deletions

View File

@@ -29,4 +29,11 @@ async function decrypt() {
});
document.getElementById("decodedtext").value = await res.text();
} catch (e) { alert("Impossibile connettersi al server."); }
}
}
// Gestione Menu Mobile
function toggleMenu() {
document.getElementById("nav-links").classList.toggle("active");
}
// Anno dinamico Footer
document.getElementById("year").innerText = new Date().getFullYear();