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