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