templates/profile/edit.html
author Nishanth Amuluru <nishanth@fossee.in>
Fri, 07 Jan 2011 11:43:14 +0530
changeset 32 df56daf2178e
permissions -rw-r--r--
Added all the required templates for django-registration

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