Files
pbt/templates/register.html
T
zisco d8576dc539
Deploy PBT / deploy (push) Successful in 14s
Add missing templates
2026-09-09 20:24:05 +02:00

19 lines
639 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 %}Registrieren PBT{% endblock %}
{% block content %}
<h2>Registrieren</h2>
<form method="post">
<label for="username">Benutzername</label>
<input type="text" id="username" name="username" required autofocus>
<label for="email">E-Mail</label>
<input type="email" id="email" name="email" required>
<label for="password">Passwort</label>
<input type="password" id="password" name="password" required minlength="8">
<button type="submit">Konto erstellen</button>
</form>
<p>Schon registriert? <a href="{{ url_for('login') }}">Zum Login</a></p>
{% endblock %}