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>Willkommen</title>
|
|
|
|
<link rel="stylesheet" href="css/styles.css">
|
|
|
|
</head>
|
|
|
|
<body>
|
2024-10-29 22:06:53 +01:00
|
|
|
|
|
|
|
<!-- Header für Benutzer-Info und Buttons -->
|
|
|
|
<header class="header">
|
|
|
|
<h1 class="header-welcome">Willkommen auf Ihrer persönlichen Seite!</h1>
|
|
|
|
|
|
|
|
<div class="header-user-info">
|
|
|
|
<p><strong>Benutzername:</strong> <span id="username">Gast</span></p>
|
|
|
|
<p><strong>Admin:</strong> <span id="isAdmin">Nein</span></p>
|
|
|
|
</div>
|
|
|
|
|
|
|
|
<div class="header-buttons">
|
|
|
|
<button id="adminPermissionsBtn" class="header-btn" style="display: none;">Admin-Einstellungen</button>
|
|
|
|
<button id="logoutBtn" class="header-btn">Abmelden</button>
|
|
|
|
</div>
|
|
|
|
</header>
|
|
|
|
|
|
|
|
<!-- Freier Platz für zukünftige Features -->
|
|
|
|
<main></main>
|
2024-10-29 21:09:13 +01:00
|
|
|
|
|
|
|
<script src="js/main.js"></script>
|
|
|
|
</body>
|
|
|
|
</html>
|