diff options
Diffstat (limited to 'ishtar_common/templates/registration/password_change_form.html')
-rw-r--r-- | ishtar_common/templates/registration/password_change_form.html | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/ishtar_common/templates/registration/password_change_form.html b/ishtar_common/templates/registration/password_change_form.html new file mode 100644 index 000000000..84d915eaa --- /dev/null +++ b/ishtar_common/templates/registration/password_change_form.html @@ -0,0 +1,14 @@ +{% extends "base.html" %} +{% load i18n %} + +{% block content %} +<div class='form'> +<form method="post" action=".">{% csrf_token %} + <table> + {{ form.as_table }} + + <tr><td colspan='2'><input type="submit" value="{% trans 'Submit' %}" /></td></tr> + </table> +</form> +</p> +{% endblock %} |