password_change.html
author nishanth
Mon, 12 Apr 2010 02:57:25 +0530
changeset 9 e29ecb7819e7
permissions -rw-r--r--
password change and password reset have been done.

{% extends "base.html" %}
{% block content %}
	{% if password_changed %}
		Your password has been successfully changed. <a href="/reg">Click here</a> to return to home page.
	{% else %}
		<form action="" method="post">
		{{form.as_p}}
		<input type="submit" value="Change">
		</form>
	{% endif %}
{% endblock %}