--- /dev/null
+{% extends "base.html" %}
+{% load i18n %}
+{% load ajaxable_tags %}
+
+{% block titleextra %}{% trans "Change Password" %}{% endblock %}
+
+{% block body %}
+ <h1>{% trans "Change Password" %}</h1>
+
+ <form method="POST" action="" class="cuteform hidelabels">
+ {% csrf_token %}
+ <ul>
+ {{ password_change_form|placeholdized_ul }}
+ <li><input type="submit" name="action" value="{% trans "Change Password" %}"/></li>
+ </ul>
+ </form>
+{% endblock %}