aboutsummaryrefslogtreecommitdiffstats
path: root/templates/registration/password_change_form.html
blob: c349f3fb8645618e2c4017adbddc097e2bd8acf8 (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 btn-default" value="{% trans 'Submit' %}" />
  {% csrf_token %}
</form>
{% endblock %}