blob: 8e6352e9d5a12b866201949f745307dbae98c089 (
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 Examination.
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}}/exam/register/">New User Registration</a>
{% endblock content %}
|