password_change.html
author nishanth
Mon, 12 Apr 2010 04:23:13 +0530
changeset 10 c52d170969f0
parent 9 e29ecb7819e7
permissions -rw-r--r--
quite a few changes. modified models and feedback views .

{% 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 %}