Files
pbt/login.html
T
zisco f4c75526c3
Deploy PBT / deploy (push) Failing after 32s
Add workflow
2026-09-09 17:39:25 +02:00

16 lines
518 B
HTML
Raw Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
{% extends "base.html" %}
{% block title %}Login PBT{% endblock %}
{% block content %}
<h2>Login</h2>
<form method="post">
<label for="username">Benutzername</label>
<input type="text" id="username" name="username" required autofocus>
<label for="password">Passwort</label>
<input type="password" id="password" name="password" required>
<button type="submit">Einloggen</button>
</form>
<p>Noch kein Konto? <a href="{{ url_for('register') }}">Jetzt registrieren</a></p>
{% endblock %}