NDOJ/templates/registration/password_change_form.html
2020-01-21 15:35:58 +09:00

10 lines
329 B
HTML

{% extends "base.html" %}
{% block body %}
<form action="" method="post" class="form-area">
{% csrf_token %}
<table border="0" class="django-as-table">{{ form.as_table() }}</table>
<hr>
<button style="float:right;" type="submit">{{ _('Change Password') }}</button>
</form>
{% endblock %}