SOITA/templates/register.html

22 lines
540 B
HTML
Raw Normal View History

2021-12-09 23:25:35 +01:00
{% extends "authBase.html" %}
{% block title %}Create account{% endblock %}
{% block content %}
2021-12-10 15:39:22 +01:00
<h2>Register</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 %}
2021-12-10 15:39:22 +01:00
<input type="submit" value="Crete account">
</form>
2021-12-09 23:25:35 +01:00
{% endblock %}