15 lines
350 B
HTML
15 lines
350 B
HTML
{% extends 'base.html' %}
|
|
|
|
{% block title %}HoopScout | Signup{% endblock %}
|
|
|
|
{% block content %}
|
|
<section class="panel mx-auto max-w-lg">
|
|
<h1>Create account</h1>
|
|
<form method="post" class="mt-4 space-y-4">
|
|
{% csrf_token %}
|
|
{{ form.as_p }}
|
|
<button type="submit" class="btn">Create account</button>
|
|
</form>
|
|
</section>
|
|
{% endblock %}
|