10 lines
245 B
HTML
10 lines
245 B
HTML
<!-- templates/auth/login.html -->
|
|
{% extends "base.html" %}
|
|
{% block content %}
|
|
<form method="post" class="space-y-2">
|
|
{% csrf_token %}
|
|
{{ form.as_p }}
|
|
<button class="px-4 py-2 bg-amber-500 rounded">Entrar</button>
|
|
</form>
|
|
{% endblock %}
|