summaryrefslogtreecommitdiff
path: root/templates/exam/login.html
blob: b8594f4474befa9fdaf736d1900f38c8b810cb0a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
{% 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 %}

{{ form.as_p }}

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