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