docking - beta version, only basic
[django_unres.git] / django_simple / authentication / templates / registration / registration_form.html
1 {% extends "base.html" %}
2 {% load i18n %}
3
4 {% block content %}
5 <form method="post" action=".">
6   {% csrf_token %}
7   {{ form.as_p }}
8
9   <input type="submit" value="{% trans 'Submit' %}" />
10 </form>
11 {% endblock %}