password_change.html 359 B

1234567891011121314
  1. {% extends '_base.html' %}
  2. {% load crispy_forms_tags %}
  3. {% block title %}Change Password{% endblock %}
  4. {% block content %}
  5. <h2>Change Password</h2>
  6. <form method="post" action="{% url 'account_change_password' %}">
  7. {% csrf_token %}
  8. {{ form|crispy }}
  9. <button class="btn btn-success" type="submit">Change Password</button>
  10. </form>
  11. {% endblock content %}