refactored templates

This commit is contained in:
2026-02-21 23:09:22 +01:00
parent 44b8e90448
commit 076293f80d
14 changed files with 694 additions and 699 deletions

View File

@@ -0,0 +1,13 @@
{% extends "base.html" %}
{# Centered card layout used by login, register, and set_token pages. #}
{% block body_class %}flex items-center justify-center min-h-screen bg-background{% endblock %}
{% block body %}
<div class="bg-gray-800 p-8 rounded-lg shadow-lg max-w-md w-full border border-gray-700">
{% block card_content %}{% endblock %}
</div>
{% endblock %}
{% block scripts %}{% endblock %}{# No Flowbite needed on auth pages #}