d0aceaeec4
Signed-off-by: Corentin Chary <corentin.chary@gmail.com>
20 lines
383 B
HTML
20 lines
383 B
HTML
{% extends "registration/_registration_base.html" %}
|
|
|
|
{% block title %}
|
|
Register for an account
|
|
{% endblock %}
|
|
|
|
{% block content %}
|
|
<form method='post' action=''>{% csrf_token %}
|
|
<table>
|
|
{{ form }}
|
|
<tr>
|
|
<td></td>
|
|
<td>
|
|
<input class="btn pull-right" type="submit" value="Send activation email" />
|
|
</td>
|
|
</tr>
|
|
</table>
|
|
</form>
|
|
{% endblock %}
|