feat: rebuild rss-news backend, admin ui, and legal extraction pipeline

This commit is contained in:
Oliver 2026-02-18 09:46:44 +01:00
parent d65c55d315
commit 2c331d683b
No known key found for this signature in database
43 changed files with 3463 additions and 73 deletions

View file

@ -0,0 +1,27 @@
<!doctype html>
<html lang="de">
<head>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<title>{{ title }}</title>
<link rel="stylesheet" href="/admin/static/admin.css" />
</head>
<body>
<main class="container login">
<h1>rss-news Admin</h1>
<p>Bitte anmelden, um das Tool zu verwalten.</p>
{% if error %}
<div class="alert">Login fehlgeschlagen. Bitte pruefen.</div>
{% endif %}
<form method="post" action="/admin/login" class="card">
<label>Benutzername
<input type="text" name="username" required />
</label>
<label>Passwort
<input type="password" name="password" required />
</label>
<button type="submit">Anmelden</button>
</form>
</main>
</body>
</html>