blob: eda92947f754c364263d96517609b0b50bb5cebf (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
|
{% extends 'dispatch/base.html' %}
{% block title %}Register{% endblock %}
{% block content %}
<div class="row">
<div class="col s12">
<p>Send a registration request with the following form</p>
</div>
</div>
<form action="" method="post">{% csrf_token %}
{% for field in form %}
<p>
{{field.label_tag}} {{field}}
</p>
{% endfor %}
<div class="right-align">
<input type="submit" class="btn blue" value="Submit" />
</div>
</form>
{% endblock %}
|