summaryrefslogtreecommitdiff
path: root/templates/account/index.html
diff options
context:
space:
mode:
authorcoderick142017-05-17 15:40:18 +0530
committercoderick142017-05-17 15:41:00 +0530
commitfe407193c200e03070928c1e2c1a6e067d32893d (patch)
tree1c492aa814754b5db5d644c769f5382306217298 /templates/account/index.html
parent9a1393e8470d855762e699abca9911b9cdae6a7d (diff)
downloadSBHS-2018-Rpi-fe407193c200e03070928c1e2c1a6e067d32893d.tar.gz
SBHS-2018-Rpi-fe407193c200e03070928c1e2c1a6e067d32893d.tar.bz2
SBHS-2018-Rpi-fe407193c200e03070928c1e2c1a6e067d32893d.zip
Upgrade to Django 1.11
- Database integration yet to be tested
Diffstat (limited to 'templates/account/index.html')
-rw-r--r--templates/account/index.html6
1 files changed, 3 insertions, 3 deletions
diff --git a/templates/account/index.html b/templates/account/index.html
index d90ba9d..a8b7f34 100644
--- a/templates/account/index.html
+++ b/templates/account/index.html
@@ -6,7 +6,7 @@
<div class="span5">
<h2>Login</h2>
<br>
- <form action="{% url 'sbhs_server.account.views.login' %}" method="POST">
+ <form action="{% url 'account_login' %}" method="POST">
{% csrf_token %}
<label for="login_username">Username</label>
<input type="text" name="username" id="login_username" required>
@@ -15,12 +15,12 @@
<input type="password" name="password" id="login_password" required>
<br>
<input type="submit" class="btn btn-primary" value="Login">
- &nbsp;&nbsp;<a href="{% url 'sbhs_server.password.views.new' %}">Forgot Password?</a>
+ &nbsp;&nbsp;<a href="{% url 'password_index' %}">Forgot Password?</a>
</form>
</div>
<div class="span5 pull-right">
<h2>Create Account</h2>
- <form action="{% url 'sbhs_server.account.views.create' %}" method="POST">
+ <form action="{% url 'account_create' %}" method="POST">
{% csrf_token %}
<label for="name">Name</label>
<input type="text" name="name" id="name" required>