euscan-ng/euscanwww/djeuscan/templates/registration/password_change_form.html

17 lines
363 B
HTML
Raw Normal View History

{% extends "registration/_registration_base.html" %}
{% block title %}Change password{% endblock %}
{% block content %}
<form method='post' action=''>{% csrf_token %}
<table>
{{ form }}
<tr>
<td></td>
<td>
<input type='submit' value="Change password" />
</td>
</tr>
</table>
</form>
{% endblock %}