15 lines
358 B
HTML
15 lines
358 B
HTML
{% extends "registration/registration_base.html" %}
|
|
|
|
{% block title %}Register for an account{% endblock %}
|
|
|
|
{% block content %}
|
|
<div id="registration">
|
|
<table>
|
|
<form method='post' action=''>{% csrf_token %}
|
|
{{ form }}
|
|
<tr><td></td><td><input type="submit" value="Send activation email" /></td>
|
|
</form>
|
|
</table>
|
|
</div>
|
|
{% endblock %}
|