mirror of
https://github.com/nikdoof/test-auth.git
synced 2025-12-14 14:52:15 +00:00
18 lines
563 B
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 %}
|