euscan-ng/euscanwww/djeuscan/templates/registration/registration_form.html
2012-08-08 10:47:58 +02:00

24 lines
420 B
HTML

{% extends "registration/_registration_base.html" %}
{% block title %}
Register for an account
{% endblock %}
{% block content %}
<h2>
Register
</h2>
<form method='post' action=''>{% csrf_token %}
<table class="table">
{{ form }}
<tr>
<td></td>
<td>
<input class="btn pull-right" type="submit" value="Send activation email" />
</td>
</tr>
</table>
</form>
{% endblock %}