This commit is contained in:
Lucas F. 2024-02-11 12:18:37 -03:00
commit 39cd44d022
54 changed files with 2144 additions and 0 deletions

View file

@ -0,0 +1,11 @@
{% 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 %}