24 lines
551 B
HTML
24 lines
551 B
HTML
<!DOCTYPE html>
|
||
<html lang="de">
|
||
<head>
|
||
<meta charset="UTF-8">
|
||
<title>Dashboard - Schic App</title>
|
||
<link rel="stylesheet" href="styles.css">
|
||
</head>
|
||
<body>
|
||
<div class="container">
|
||
<h1>Dashboard</h1>
|
||
<p id="welcomeMessage">Willkommen …</p>
|
||
|
||
<button id="logoutBtn">Logout</button>
|
||
|
||
<h2>Todos</h2>
|
||
<ul id="todosList"></ul>
|
||
|
||
<p id="errorMessage" class="error"></p>
|
||
</div>
|
||
|
||
<!-- Lade das Dashboard‑Script -->
|
||
<script type="module" src="dashboard.js"></script>
|
||
</body>
|
||
</html> |