password_set.html 421 B

123456789101112131415
  1. {% extends "account/base.html" %}
  2. {% load i18n %}
  3. {% block head_title %}{% trans "Set Password" %}{% endblock %}
  4. {% block content %}
  5. <h1>{% trans "Set Password" %}</h1>
  6. <form method="POST" action="{% url 'account_set_password' %}" class="password_set">
  7. {% csrf_token %}
  8. {{ form.as_p }}
  9. <input type="submit" name="action" value="{% trans 'Set Password' %}"/>
  10. </form>
  11. {% endblock %}