Files
test/public/dashboard.html
admin 7345878f10
All checks were successful
Build & Push Image / build-image (push) Successful in 1m29s
filter
2026-03-02 19:05:53 +09:00

47 lines
1.6 KiB
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>
<div class="elements-container">
<div class="filters">
<label>Inhalt: <input type="text" id="filter-inhalt" placeholder="Filter Inhalt"></label>
<label>Bundesland: <input type="text" id="filter-bundesland" placeholder="Filter Bundesland"></label>
<label>Fach: <input type="text" id="filter-fach" placeholder="Filter Fach"></label>
<label>Version: <input type="text" id="filter-version" placeholder="Filter Version"></label>
<label>Stufe: <input type="number" id="filter-stufe" placeholder="Stufe"></label>
<button id="clear-filters">Filter zurücksetzen</button>
</div>
<table id="elementsTable">
<thead>
<tr>
<th>Inhalt</th>
<th>Bundesland</th>
<th>Fach</th>
<th>Version</th>
<th>Stufe</th>
</tr>
</thead>
<tbody id="elementsTbody"></tbody>
</table>
</div>
<p id="errorMessage" class="error"></p>
</div>
<!-- Lade das DashboardScript -->
<script type="module" src="dashboard.js"></script>
</body>
</html>