summaryrefslogtreecommitdiff
path: root/template/allotter/login.html
blob: 8eaf4dfe7b42bbb48a6ae678ba71f6fd993819fa (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
{% extends "base.html" %}

{% block title %}Login{% endblock title %}

{% block content %}
<p> Welcome to the Allotment.
Please login to proceed.</p>

<form action="" method="post">
{% csrf_token %}

<table>
{{ form.as_table }}
</table>

<input type="submit" value="Login" />
</form>
<!-- <a href="{{URL_ROOT}}/exam/forgotpassword/">Forgot Password</a> <br /> -->
<a href="{{URL_ROOT}}/allotter/register/">New User Registration</a> 
{% endblock content %}