aboutsummaryrefslogtreecommitdiff
blob: 579534699cf2bb211e135a76251fc9a93b1b8af5 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
{% if username %}
    You will soon recieve a mail at {{ email }} to verify your account
{% else %}
    <form action="." method="post">{% csrf_token %}
        {% for field in form %}
            {{ field.label_tag }}{{ field }}<br />
        {% endfor %}
        <input class="button" type="submit" value="signup">
        {% if msg %}
            <p class="messages">{{ msg }}</p>
        {% endif %}
    </form>
{% endif %}