TrafoKing/templates/settingsapp/form.html
2025-05-12 23:08:39 +02:00

17 lines
419 B
HTML

<!-- templates/settingsapp/form.html -->
{% extends "base.html" %}
{% block title %}Ajustes · Trafoking{% endblock %}
{% block content %}
<h2 class="text-3xl font-bold mb-6 text-[color:var(--brand-yellow)]">
Ajustes de calificación
</h2>
<form method="post" class="grid gap-4 w-full max-w-lg">
{% csrf_token %}
{{ form.as_p }}
<button class="btn btn-primary w-full">Guardar</button>
</form>
{% endblock %}