templates/registration/registration_form.html
author Nishanth Amuluru <nishanth@fossee.in>
Sat, 08 Jan 2011 01:52:55 +0530 (2011-01-07)
changeset 304 37adf6656f48
parent 260 8b891483e052
permissions -rw-r--r--
Added full_name and prettified the page
{% extends 'base.html' %}
{% block content %}
<form action="/accounts/register/" method="post">
{% csrf_token %}
{{ form.as_p }}
<input type="submit" value="Submit" />
</form>
{% endblock %}