blob: e4164709c1fbaee72f79233fd7cde0942cc4d8b4 (
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
|
{% extends "base.html" %}
{% block title %}Registration form {% endblock %}
{% block content %}
<div class="container">
<div class="content">
<div class="page-header">
<h1><center>Online Test</center></h1>
</div>
<div>
<div>
<h3><center>Please fill in the following details</center></h3><br>
<form action="" method="post">
{% csrf_token %}
<center><table class=span1>
{{ form.as_table }}
</table></center>
<center><button class="btn" type="submit">Register</button> <button class="btn" type="reset">Cancel</button></center>
</form>
</div>
</div>
</div>
<footer>
<p>© FOSSEE group, IIT Bombay</p>
</footer>
</div>
{% endblock content %}
|