templates/registration/registration_form.html
author Nishanth Amuluru <nishanth@fossee.in>
Fri, 07 Jan 2011 10:02:02 +0530
changeset 22 8b891483e052
parent 20 0e8d0f5474f2
permissions -rw-r--r--
fixed a typo and set the settings required for django registration

{% extends 'base.html' %}
{% block content %}
<form action="/accounts/register/" method="post">
{% csrf_token %}
{{ form.as_p }}
<input type="submit" value="Submit" />
</form>
{% endblock %}