This commit is contained in:
George Lacey 2021-06-01 14:48:34 +01:00
parent ba55d7491f
commit d29ffdc660

View File

@ -3,7 +3,7 @@
{% block title %}Login{% endblock %}
{% load static %}
{% block script %}
{{block.super}}
{{ block.super }}
{% endblock %}
{% block style %}
@ -26,13 +26,11 @@
{% block body %}
<div class="container vertical-center justify-content-center">
<div class="container vertical-center justify-content-center">
<div>
<h1 class="display-4 fw-normal align-bottom text-center">Log in</h1>
<form method="post" class="mx-auto pt-4">
{% csrf_token %}
<!-- <img class="mb-4" src="" alt="" width="" height="">-->
<div class="shadow form-floating my-2">
<input class="form-control" placeholder="Username" type="text" name="username" autofocus=""
autocapitalize="none" autocomplete="username"
@ -49,7 +47,8 @@
<button class="shadow w-100 btn btn-lg btn-secondary" type="submit">Log In</button>
</form>
</divclass>
</div>
</div>
</div>
{% endblock %}