github.com/blystad/deis@v0.11.0/controller/web/templates/account/password_delete.html (about) 1 {% extends "account/base.html" %} 2 3 {% load i18n %} 4 5 {% block head_title %}{% trans "Delete Password" %}{% endblock %} 6 7 {% block content %} 8 <h1>{% trans "Delete Password" %}</h1> 9 <p>{% blocktrans %}You may delete your password since you are currently logged in using OpenID.{% endblocktrans %}</p> 10 <form method="post" action=""> 11 {% csrf_token %} 12 <input type="submit" value="{% trans "delete my password" %}"> 13 </form> 14 {% endblock %}