SOITA/templates/register.html

22 lines
547 B
HTML
Raw Normal View History

2021-12-09 23:25:35 +01:00
{% extends "authBase.html" %}
2022-01-25 18:17:58 +01:00
{% block title %}Stwórz konto{% endblock %}
2021-12-09 23:25:35 +01:00
{% block content %}
2022-01-25 18:17:58 +01:00
<h2>Stwórz konto</h2>
2021-12-15 16:46:50 +01:00
<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 %}
2022-01-25 18:17:58 +01:00
<input type="submit" value="Zarejestruj się">
2021-12-10 15:39:22 +01:00
</form>
2021-12-09 23:25:35 +01:00
{% endblock %}