github.com/blystad/deis@v0.11.0/controller/web/templates/account/password_change.html (about) 1 {% extends "account/base.html" %} 2 3 {% load i18n %} 4 {% block head_title %}{% trans "Change Password" %}{% endblock %} 5 6 {% block content %} 7 <h1>{% trans "Change Password" %}</h1> 8 9 <form method="POST" action="" class="password_change"> 10 {% csrf_token %} 11 {{ form.as_p }} 12 <button type="submit" name="action">{% trans "Change Password" %}</button> 13 </form> 14 {% endblock %}