You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
11 lines
337 B
11 lines
337 B
{% 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 %}
|
|
|