summaryrefslogtreecommitdiff
path: root/ishtar_common/templates/registration/password_change_form.html
blob: 84d915eaa629f41d64dcc1532f49d5f83818657d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
{% extends "base.html" %}
{% load i18n %}

{% block content %}
<div class='form'>
<form method="post" action=".">{% csrf_token %}
  <table>
  {{ form.as_table }}

  <tr><td colspan='2'><input type="submit" value="{% trans 'Submit' %}" /></td></tr>
  </table>
</form>
</p>
{% endblock %}