feat: Web-GUI Basis, Uebersicht, Buchungsliste

Co-Authored-By: Claude Fable 5 <noreply@anthropic.com>
This commit is contained in:
2026-07-17 18:45:54 +02:00
parent e8ea948b38
commit a6009c47e3
11 changed files with 488 additions and 9 deletions

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>Anmelden Finanzberatung</title>
<link rel="stylesheet" href="/static/style.css">
</head>
<body>
<h1>Finanzberatung</h1>
<form method="post" action="/login">
<label>Benutzer
<input name="username" placeholder="Benutzer">
</label>
<label>Passwort
<input name="password" type="password" placeholder="Passwort">
</label>
<button type="submit">Anmelden</button>
</form>
</body>
</html>