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
commita1e0a5502f04da68b6a9ca8508dda3f9d7e1d055 (patch)
tree20181e6b1936f50ad48d8e35720d64a37566f558 /templates/account/index.html
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/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>