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