blob: 20dd4e2d511949dee1addee822ac94361cdc5dfb (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
{% extends "base.html" %}
{% block title %}Registration form {% endblock %}
{% block formtitle %}Please fill in the following details {% endblock %}
{% block video %}
<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 %}
|