21 lines
541 B
JavaScript
21 lines
541 B
JavaScript
// Öffnet das Logout-Popup
|
|
function openLogoutPopup() {
|
|
const popup = document.getElementById("logoutPopup");
|
|
if (popup) {
|
|
popup.style.display = "flex";
|
|
}
|
|
}
|
|
|
|
// Schließt das Logout-Popup
|
|
function closeLogoutPopup() {
|
|
const popup = document.getElementById("logoutPopup");
|
|
if (popup) {
|
|
popup.style.display = "none";
|
|
}
|
|
}
|
|
|
|
// Bestätigt die Abmeldung und leitet zur Startseite weiter
|
|
function confirmLogout() {
|
|
window.location.href = "/Projekt_SE2/startseite.jsp"; // Weiterleitung zur Startseite
|
|
}
|