Add workflow
Deploy PBT / deploy (push) Failing after 32s

This commit is contained in:
2026-09-09 17:39:25 +02:00
parent c295e7c676
commit f4c75526c3
12 changed files with 452 additions and 0 deletions
+15
View File
@@ -0,0 +1,15 @@
{% 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 %}