Files
pbt/templates/login.html
T
zisco 64d97aa5da
Deploy PBT / deploy (push) Successful in 1m22s
Redesign Gitea-like
2026-09-10 17:28:06 +02:00

25 lines
757 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 %}Anmelden PBT{% endblock %}
{% block content %}
<div class="card">
<h2>Anmelden</h2>
<form method="post">
<div class="field">
<label for="username">Benutzername<span class="required">*</span></label>
<input type="text" id="username" name="username" required autofocus>
</div>
<div class="field">
<label for="password">Passwort<span class="required">*</span></label>
<input type="password" id="password" name="password" required>
</div>
<button type="submit">Anmelden</button>
</form>
<div class="card-footer">
Noch kein Konto? <a href="{{ url_for('register') }}">Jetzt registrieren.</a>
</div>
</div>
{% endblock %}