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

{% block content %}

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

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