Add registration form

This commit is contained in:
2015-01-12 16:51:54 +01:00
committed by Gergely Polonkai
parent 8c9475d076
commit 5e23c73594
8 changed files with 104 additions and 1 deletions

View File

@@ -0,0 +1,10 @@
{% extends 'front_template.html' %}
{% block body %}
<p>For later convenience, please use your corporate ID as the username!</p>
<form method="post" action="{% url 'accounts:register' %}">
{% csrf_token %}
{{ form.as_p }}
<button type="submit">Register</button>
</form>
{% endblock %}