10 lines
205 B
HTML
10 lines
205 B
HTML
|
{% extends 'base_generic.html' %}
|
||
|
|
||
|
{% block content %}
|
||
|
<h2>Sign up</h2>
|
||
|
<form method="post">
|
||
|
{% csrf_token %}
|
||
|
{{ form.as_p }}
|
||
|
<button type="submit">Sign up</button>
|
||
|
</form>
|
||
|
{% endblock %}
|