blob: 72769a0a99d2f31e666fd0bb9859e154eafdf8bd (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
{% extends "base.html" %}
{% block title %}Login{% endblock title %}
{% block content %}
<h2> Welcome to the Allotment.
Please login to proceed.</h2>
<form action="" method="post">
{% csrf_token %}
<table>
{{ form.as_table }}
</table>
<br/>
<input type="submit" value="Login" />
</form>
<!-- <a href="{{URL_ROOT}}/exam/forgotpassword/">Forgot Password</a> <br /> -->
{% endblock content %}
|