21 lines
626 B
HTML
21 lines
626 B
HTML
|
<!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>
|
||
|
<h1>Willkommen auf Ihrer persönlichen Seite!</h1>
|
||
|
<div id="user-info">
|
||
|
<p><strong>Benutzername:</strong> <span id="username"></span></p>
|
||
|
<p><strong>Admin:</strong> <span id="isAdmin"></span></p>
|
||
|
</div>
|
||
|
<button id="adminPermissionsBtn" style="display: none;">Admin-Einstellungen</button>
|
||
|
<button id="logoutBtn">Abmelden</button>
|
||
|
|
||
|
<script src="js/main.js"></script>
|
||
|
</body>
|
||
|
</html>
|