24 lines
503 B
HTML
24 lines
503 B
HTML
{% extends 'base.html' %}
|
|
|
|
{% block content %}
|
|
<article>
|
|
<section>
|
|
<h1>Sign up</h1>
|
|
|
|
<form method="post">
|
|
{% csrf_token %}
|
|
<table class="form-table">
|
|
{{ form.as_table }}
|
|
|
|
<tr>
|
|
<td></td>
|
|
<td>
|
|
<button type="submit">Create account</button>
|
|
</td>
|
|
</tr>
|
|
</table>
|
|
</form>
|
|
</section>
|
|
</article>
|
|
{% endblock %}
|