blob: 4b2218ffba7083e224b63371e1c015b360851b49 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
|
{% extends "manage.html" %}
<!DOCTYPE html>
{% block pagetitle %} Change Password {% endblock %}
{% block title %} Change Password {% endblock %}
{% block content %}
<br><br>
<form action="" method="post" >
{% csrf_token %}
<center>
<table class="span1">
{{ form }}
</table>
</center>
<br>
<center>
<button class="btn btn-success btn-lg" type="submit">
Change
</button>
<a href="{% url 'yaksh:index' %}" class="btn btn-primary btn-lg">
Cancel
</a>
</center>
</form>
{% endblock content %}
|