11 lines
337 B
HTML
11 lines
337 B
HTML
{% extends "core/pages/index.html" %}
|
|
|
|
{% load static %}
|
|
|
|
{% block main %}
|
|
<form action="" method="post" autocomplete="off" style="display: grid;gap: 1rem;">
|
|
{% csrf_token %}
|
|
{{ form.as_p }}
|
|
<button class="btn btn-primary" type="submit" style="margin-top:1rem;">Login</button>
|
|
</form>
|
|
{% endblock main %}
|