diff options
Diffstat (limited to 'ishtar/templates/registration/password_change_form.html')
-rw-r--r-- | ishtar/templates/registration/password_change_form.html | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/ishtar/templates/registration/password_change_form.html b/ishtar/templates/registration/password_change_form.html new file mode 100644 index 000000000..ec782424f --- /dev/null +++ b/ishtar/templates/registration/password_change_form.html @@ -0,0 +1,10 @@ +{% extends "base.html" %} +{% load i18n %} + +{% block content %} +<form method="post" action=".">{% csrf_token %} + {{ form.as_p }} + + <input type="submit" value="{% trans 'Submit' %}" /> +</form> +{% endblock %} |