summaryrefslogtreecommitdiff
path: root/yaksh/templates/registration/password_change_form.html
blob: b61841054a14e2c2fa4f28b5560de1ced5790a91 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
{% extends "base.html" %}
<!DOCTYPE html>
{% block pagetitle %} Change Password {% endblock %}

{% block content %}
<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}}/exam/");'>Cancel</button></center>
</form>
{% endblock content %}