second commit

This commit is contained in:
2026-08-19 22:33:19 +02:00
parent 411812e954
commit 199f306993
107 changed files with 5984 additions and 0 deletions

21
templates/dashboard.html Normal file
View File

@ -0,0 +1,21 @@
<!DOCTYPE html>
<html lang="de">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>Jumphost Dashboard</title>
<link rel="stylesheet" href="/static/css/app.css">
</head>
<body>
<div class="topbar">
<div class="brand">Jumphost</div>
<div>
<span class="hint" id="whoami"></span>
<button id="logout-btn">Abmelden</button>
</div>
</div>
<div class="container" id="groups"></div>
<script src="/static/js/dashboard.js"></script>
</body>
</html>