Initial commit

This commit is contained in:
Bjoern Welker
2026-01-30 08:55:14 +01:00
commit 81a1ed7eef
17 changed files with 2824 additions and 0 deletions

24
wawi/templates/login.html Normal file
View File

@@ -0,0 +1,24 @@
{% extends "base.html" %}
{% block content %}
<div class="card form-card">
<h2>Login</h2>
{% if error %}
<div class="note">Benutzername oder Passwort ist falsch.</div>
{% endif %}
<form method="post">
<div class="form-grid">
<label>
Benutzer
<input type="text" name="user" required />
</label>
<label>
Passwort
<input type="password" name="password" required />
</label>
</div>
<div class="form-actions">
<button class="btn btn-accent" type="submit">Anmelden</button>
</div>
</form>
</div>
{% endblock %}