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

30 lines
954 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 %}
<div class="card">
<h2>Konto erstellen</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="email">E-Mail<span class="required">*</span></label>
<input type="email" id="email" name="email" required>
</div>
<div class="field">
<label for="password">Passwort<span class="required">*</span></label>
<input type="password" id="password" name="password" required minlength="8">
</div>
<button type="submit">Konto erstellen</button>
</form>
<div class="card-footer">
Schon registriert? <a href="{{ url_for('login') }}">Zum Login.</a>
</div>
</div>
{% endblock %}