22 lines
547 B
HTML
22 lines
547 B
HTML
{% extends "authBase.html" %}
|
|
|
|
{% block title %}Stwórz konto{% endblock %}
|
|
|
|
{% block content %}
|
|
<h2>Stwórz konto</h2>
|
|
<form method="post"> {% csrf_token %}
|
|
|
|
{% for field in registration_form %}
|
|
<p>
|
|
{{field.label_tag}}
|
|
{{field}}
|
|
{% for error in field.errors %}
|
|
<p style="color: red;">{{error}}</p>
|
|
{% endfor %}
|
|
</p>
|
|
{% endfor %}
|
|
<input type="submit" value="Zarejestruj się">
|
|
</form>
|
|
{% endblock %}
|
|
|