22 lines
728 B
HTML
22 lines
728 B
HTML
{% extends 'base.html' %}
|
|
|
|
{% block header %}
|
|
<h1>{% block title %}Register{% endblock %}</h1>
|
|
{% endblock %}
|
|
|
|
{% block content %}
|
|
<a>
|
|
<form method="post">
|
|
<label for="email">Email (Account login)</label>
|
|
<input type="email" name="email" id="email" required>
|
|
<label for="username">Name</label>
|
|
<input name="username" id="username" required>
|
|
<label for="password">Password</label>
|
|
<input type="password" name="password" id="password" required>
|
|
<br />
|
|
<label for="email">Passwort muss Groß- und Kleinbuchstaben, Buchstaben und Zahlen enthalten und min. 8 Zeichen lang sein.</label>
|
|
<br />
|
|
<input type="submit" value="Register">
|
|
</form>
|
|
</a>
|
|
{% endblock %} |