blob: 62aedcf226d79365fed6da4055f48b8a731d374c (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
|
{% extends "base.html" %}
{% block title %}Login{% endblock title %}
{% block content %}
<div class="container">
<div class="content">
<div class="page-header">
<h1><Strong><center>Online Test</center></strong></h1>
</div>
<div class=row>
<div class=span14>
<h3><center>Login</center></h3><br>
<form action="" method="post">
{% csrf_token %}
<style type="text/css">
label {
padding-top: 6px;
font-size: 15px;
line-height: 18px;
float: left;
width: 80px;
text-align: center;
color: #404040;
/* font-weight : bold;*/
}
</style>
<center><table class=span1>
{{ form.as_table }}
</table></center>
<center><button class="btn" type="submit">Login</button> <button class="btn" type="reset">Cancel</button></center>
<br><center><a href="{{URL_ROOT}}/exam/forgotpassword/">Forgot Password?</a></center><br>
<center><a href="{{URL_ROOT}}/exam/register/">New User? Sign-Up </a></center>
</form>
</div>
</div>
</div>
<footer>
<p>© FOSSEE group, IIT Bombay</p>
</footer>
</div> <!-- /container -->
{% endblock content %}
|