2024-10-29 21:09:13 +01:00
|
|
|
<!DOCTYPE html>
|
|
|
|
<html lang="de">
|
|
|
|
<head>
|
|
|
|
<meta charset="UTF-8">
|
|
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
|
|
<title>Admin-Bereich</title>
|
|
|
|
<link rel="stylesheet" href="css/styles.css">
|
|
|
|
</head>
|
|
|
|
<body>
|
2024-10-29 22:24:31 +01:00
|
|
|
|
|
|
|
<!-- Header für Admin-Bereich -->
|
|
|
|
<header class="header">
|
|
|
|
<h1 class="header-title">Admin-Bereich</h1>
|
|
|
|
|
|
|
|
<div class="header-buttons">
|
|
|
|
<button id="loadUserListBtn" class="header-btn">Benutzerliste laden</button>
|
2024-11-14 17:43:37 +01:00
|
|
|
<button id="welcomeButton" class="header-btn">Zur Willkommensseite</button>
|
2024-10-29 22:24:31 +01:00
|
|
|
<button id="logoutBtn" class="header-btn">Abmelden</button>
|
|
|
|
</div>
|
|
|
|
</header>
|
|
|
|
|
|
|
|
<!-- Hauptbereich für Benutzerliste -->
|
|
|
|
<main>
|
2024-11-18 17:04:10 +01:00
|
|
|
<div id="custom-alert-confirm" style="display:none;" class="alert-box">
|
|
|
|
<p id="alert-message-confirm"></p>
|
|
|
|
<button id="close-alert-confirm">Close</button>
|
|
|
|
<button id="confirm-alert-confirm" style="display:none;">Confirm</button>
|
|
|
|
</div>
|
|
|
|
|
2024-10-29 22:24:31 +01:00
|
|
|
<div id="user-list" class="user-list"></div>
|
|
|
|
</main>
|
2024-11-14 17:43:37 +01:00
|
|
|
<script type="module" src="js/shared_functions.js"></script>
|
|
|
|
<script type="module" src="js/main.js"></script>
|
2024-10-29 21:09:13 +01:00
|
|
|
</body>
|
|
|
|
</html>
|