11 lines
315 B
HTML
11 lines
315 B
HTML
<!-- templates/auth/login.html -->
|
|
{% extends "base.html" %}
|
|
{% block title %}Login · Trafoking{% endblock %}
|
|
{% block content %}
|
|
<form method="post" class="space-y-4 w-full max-w-xs hero-appear">
|
|
{% csrf_token %}
|
|
{{ form.as_p }}
|
|
<button class="btn btn-primary w-full">Entrar</button>
|
|
</form>
|
|
{% endblock %}
|