blob: b1aaa504b59b9ba5649f7651f925fec953cdbcf4 (
plain)
| 1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
 | {% extends "base.html" %}
{% block title %}Create Account{% endblock %}
{% block content %}
    <form action="." method="POST">
        {% csrf_token %}
        <fieldset>
            <legend>Create An Account</legend>
            {{ config.signup_text|safe|linebreaks }}
            {% for field in form %}
                {% include "forms/_field.html" %}
            {% endfor %}
        </fieldset>
        <div class="buttons">
            <button>Create</button>
        </div>
    </form>
{% endblock %}
 |