This commit is contained in:
2025-09-12 08:54:30 +02:00
parent 03da907c73
commit 8db70323a1
5 changed files with 63 additions and 17 deletions

View File

@@ -0,0 +1,17 @@
{% extends "base.html" %}
{% block title %}Login{% endblock %}
{% block page_title %}Anmelden{% endblock %}
{% block content %}
<form method="post" action="{{ url_for('login') }}" class="auth-form">
<label for="username">Benutzername</label>
<input type="text" id="username" name="username" required>
<label for="password">Passwort</label>
<input type="password" id="password" name="password" required>
<button type="submit">Login</button>
</form>
<p>Noch keinen Account? <a href="{{ url_for('register') }}">Jetzt registrieren</a>.</p>
{% endblock %}