blob: 5ff79ccd2447d843647c81c2db4a307fab60f536 (
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 %}Registration form {% endblock %}
{% block pagetitle %}Online Test {% endblock %}
{% block formtitle %}Please fill in the following details {% endblock %}
{% block content %}
<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>
{% endblock content %}
|