summaryrefslogtreecommitdiffstats
path: root/core/templates/registration/register.html
blob: 98615fd3b5b2538e3c03713e08b2d802d3d6da85 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
{% extends "core/base.html" %}

{% block title %}Register new user{% endblock title %}

{% block content %}
        <h1>Register a new user</h1>
        <form action="{% url 'register' %}" method="post" accept-charset="utf-8">
            {% csrf_token %}
            {% if messages %}
            <ul>
                {% for message in messages %}
                <li>{{ message }}</li>
                {% endfor %}
            </ul>
            {% endif %}
            {{ form }}

            <input type="submit" name="submit" id="submit" value="Register" />

        </form>

{% endblock content %}