document.addEventListener("DOMContentLoaded", () => { function setActiveMenu(id) { //Alle Sidebar-Links zurücksetzen document.querySelectorAll("#sidebar .nav-link").forEach(link => link.classList.remove("active")); // Alle Navbar-Links zurücksetzen document.querySelectorAll(".navbar-nav .nav-link").forEach(link => link.classList.remove("active")); //Aktiven Link setzen const activeLink = document.getElementById(id); if (activeLink) activeLink.classList.add("active"); } window.loadPage = function loadPage(page, menuId) { fetch("pages/" + page + ".html") .then(response => { if (!response.ok) { throw new Error("HTTP " + response.status); } return response.text(); }) .then(data => { document.getElementById("main-content").innerHTML = data; setActiveMenu(menuId); if (page === "login" && typeof window.initLoginPage === "function") { window.initLoginPage(); } if (page === "leaderboard" && typeof window.initLeaderboardPage === "function") { window.initLeaderboardPage(); } }) .catch(error => { console.error("Fehler beim Laden von " + page + ":", error); document.getElementById("main-content").innerHTML = "