blob: 3133baab54bd8efa4df9e7132d97cd34669f241b (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
{% extends "registration/base.html" %}
<!DOCTYPE html>
{% block title %} Change Password {% endblock %}
{% block content %}
<div class="container">
<form action="" method="post">
{% csrf_token %}
<center>
<table class=span1>
{{ form }}
</table>
</center>
<center><button class="btn" type="submit">Change Password</button>
<button class="btn" type="button" name="button" onClick='location.replace("{{URL_ROOT}}/login/");'>Cancel</button>
</center>
</form>
</div>
{% endblock content %}
|