summaryrefslogtreecommitdiffstats
path: root/templates/profiles/create_profile.html
blob: 2eed3e4805d2a089ae76e52edf29174b29c99131 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
{% extends "base.html" %}

{% block content %}

<form method="post">
{{ form }}
<input type="submit" />
</form>

{% if form.errors %}
 <p class="errornote">Please correct the errors below</p>
{% endif %}
{% endblock %}