pytask/templates/registration/registration_form.html
author Nishanth Amuluru <nishanth@fossee.in>
Sat, 08 Jan 2011 21:57:19 +0530
changeset 92 b92347d24557
parent 81 70726699ca80
permissions -rw-r--r--
Added textbook model and made a few small changes

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