aboutsummaryrefslogtreecommitdiff
path: root/templates/accounts/create.html
blob: 130f1800e4d37e78c075a3d0b09a1c695b903efc (plain)
1
2
3
4
5
6
7
8
9
10
11
{% extends "base.html" %}

{% block content %}
<h1>Register an Account</h1>

<form method="post" action="{% url 'account:create' %}">
    {% csrf_token %}
    {{ form.as_p }}
    <input type="submit" value="Register" />
</form>
{% endblock %}