25 lines
762 B
HTML
25 lines
762 B
HTML
{% extends "base.html" %}
|
|
{% block title %}Registrieren{% endblock %}
|
|
{% block page_title %}Registrieren{% endblock %}
|
|
{% block content %}
|
|
<form method="post" action="{{ url_for('register') }}" class="auth-form">
|
|
<label for="username">Benutzername</label>
|
|
<input type="text" id="username" name="username" required>
|
|
|
|
|
|
<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>
|
|
|
|
|
|
<label for="confirm">Passwort bestätigen</label>
|
|
<input type="password" id="confirm" name="confirm" required>
|
|
|
|
|
|
<button type="submit">Registrieren</button>
|
|
</form>
|
|
<p>Schon ein Konto? <a href="{{ url_for('login') }}">Zum Login</a>.</p>
|
|
{% endblock %} |