Files
test/public/dashboard.html
admin 5569f35037
All checks were successful
Build & Push Image / build-image (push) Successful in 1m27s
elemente statt todos in dashboard
2026-03-02 18:57:22 +09:00

24 lines
557 B
HTML
Raw Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
<!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>Elemente</h2>
<ul id="elementsList"></ul>
<p id="errorMessage" class="error"></p>
</div>
<!-- Lade das DashboardScript -->
<script type="module" src="dashboard.js"></script>
</body>
</html>