Files
dss/templates/account/password_set.html
2013-06-19 19:24:50 +01:00

16 lines
421 B
HTML
Executable File

{% extends "account/base.html" %}
{% load i18n %}
{% block head_title %}{% trans "Set Password" %}{% endblock %}
{% block content %}
<h1>{% trans "Set Password" %}</h1>
<form method="POST" action="" class="password_set">
{% csrf_token %}
{{ password_set_form.as_p }}
<input type="submit" name="action" value="{% trans "Set Password" %}"/>
</form>
{% endblock %}