templates/registration/registration_form.html
author Nishanth Amuluru <nishanth@fossee.in>
Fri, 07 Jan 2011 14:37:45 +0530
changeset 56 5aca9d92ccbb
parent 22 8b891483e052
permissions -rw-r--r--
removed the css code from base.html and formatted the page properly

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