aboutsummaryrefslogtreecommitdiffstats
path: root/templates/registration/password_change_form.html
blob: d74f39e5fb56469e42b1f6d5fe900b9fd7a08973 (plain)
1
2
3
4
5
6
7
8
9
10
11
{% extends "base.html" %}
{% load i18n %}

{% block content %}
<form method="post" action=".">
  {{ form.as_p }}

  <input type="submit" class="btn" value="{% trans 'Submit' %}" />
  {% csrf_token %}
</form>
{% endblock %}