summaryrefslogtreecommitdiff
path: root/templates/password
diff options
context:
space:
mode:
authorcoderick142017-05-17 15:40:18 +0530
committercoderick142017-05-17 15:41:00 +0530
commita1e0a5502f04da68b6a9ca8508dda3f9d7e1d055 (patch)
tree20181e6b1936f50ad48d8e35720d64a37566f558 /templates/password
parent6f4a84c1e58ff4d54aab94cbee26e995328b05b8 (diff)
downloadSBHS-2018-Rpi-a1e0a5502f04da68b6a9ca8508dda3f9d7e1d055.tar.gz
SBHS-2018-Rpi-a1e0a5502f04da68b6a9ca8508dda3f9d7e1d055.tar.bz2
SBHS-2018-Rpi-a1e0a5502f04da68b6a9ca8508dda3f9d7e1d055.zip
Upgrade to Django 1.11
- Database integration yet to be tested
Diffstat (limited to 'templates/password')
-rw-r--r--templates/password/edit.html2
-rw-r--r--templates/password/new.html2
2 files changed, 2 insertions, 2 deletions
diff --git a/templates/password/edit.html b/templates/password/edit.html
index 487b552..38f2254 100644
--- a/templates/password/edit.html
+++ b/templates/password/edit.html
@@ -6,7 +6,7 @@
<div class="span11">
<h2>Change Password</h2>
<br>
- <form action="{% url 'sbhs_server.password.views.update' token %}" method="POST">
+ <form action="{% url 'password_update' token %}" method="POST">
{% csrf_token %}
<label for="email">Email</label>
<input type="email" name="email" id="email" required>
diff --git a/templates/password/new.html b/templates/password/new.html
index e45e24f..068b762 100644
--- a/templates/password/new.html
+++ b/templates/password/new.html
@@ -6,7 +6,7 @@
<div class="span11">
<h2>Change Password</h2>
<br>
- <form action="{% url 'sbhs_server.password.views.email' %}" method="POST">
+ <form action="{% url 'password_link' %}" method="POST">
{% csrf_token %}
<label for="email">Email</label>
<input type="email" name="email" id="email" required>