Files
test-auth/app/templates/registration/password_change_form.html

18 lines
563 B
HTML

{% extends "registration/registration_base.html" %}
{% block title %}Change password{% endblock %}
{% block content %}
<div class="page-header">
<h1>Change Password</h1>
</div>
<form method='post' action=''>
<fieldset>
{% include "formtools/formfield.html" with field=form.old_password %}
{% include "formtools/formfield.html" with field=form.new_password1 %}
{% include "formtools/formfield.html" with field=form.new_password2 %}
{% csrf_token %}
<input type='submit' value="Change password" class="btn primary"/>
</fieldset>
</form>
{% endblock %}