summaryrefslogtreecommitdiffstats
path: root/templates/auth/signup.html
blob: d51947666702e523a80f782bef8dd65c758056e0 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
{% extends "base.html" %}

{% block title %}Create Account{% endblock %}

{% block content %}
    <form action="." method="POST">
        {% csrf_token %}
        <fieldset>
            <legend>Create An Account</legend>
            {% for field in form %}
                {% include "forms/_field.html" %}
            {% endfor %}
        </fieldset>
        <div class="buttons">
            <button>Create</button>
        </div>
    </form>
{% endblock %}