blob: c0d0cb733e5ef60b4179beac65ee53fbf003b508 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
{% if form %}
Please provide the following details.
<form action="" method="post">
{% csrf_token %}
{{ form.as_p }}
<input type="submit" value="Register" />
</form>
{% else %}
Congratulations {{ full_name }}! You have successfully registered.<br />
Please proceed to <a href="/exam/login/">Login</a>.
{% endif %}
|