15 lines
334 B
HTML
15 lines
334 B
HTML
{% extends 'base.html' %}
|
|
|
|
{% block title %}HoopScout | Signup{% endblock %}
|
|
|
|
{% block content %}
|
|
<section class="panel narrow">
|
|
<h1>Create account</h1>
|
|
<form method="post" class="stack">
|
|
{% csrf_token %}
|
|
{{ form.as_p }}
|
|
<button type="submit" class="button">Create account</button>
|
|
</form>
|
|
</section>
|
|
{% endblock %}
|