blob: 921e7b55a7d0ec6d1a4c56ce559559b1c2859807 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
{% extends "base.html" %}
{% block title %}Registration form {% endblock %}
{% block content %}
Please provide the following details.
<form action="" method="post">
{% csrf_token %}
<table>
{{ form.as_table }}
</table>
<input type="submit" value="Register" />
</form>
{% endblock content %}
|