templates/registration/registration_form.html
author Nishanth Amuluru <nishanth@fossee.in>
Fri, 07 Jan 2011 09:54:46 +0530
changeset 20 0e8d0f5474f2
child 22 8b891483e052
permissions -rw-r--r--
Added template for creating a login

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