15 lines
245 B
HTML
Executable File
15 lines
245 B
HTML
Executable File
{% extends 'base.html' %}
|
|
|
|
{% block content %}
|
|
<section>
|
|
<h1>Sign up</h1>
|
|
|
|
<form method="post">
|
|
{% csrf_token %}
|
|
{{ form.as_p }}
|
|
|
|
<input type="submit" value="Create account">
|
|
</form>
|
|
</section>
|
|
{% endblock %}
|