Style login page

Signed-off-by: Marcel Müller <neikos@neikos.email>
This commit is contained in:
Marcel Müller 2026-01-18 13:18:35 +01:00
parent a1474dab43
commit 79305724f2
6 changed files with 85 additions and 49 deletions

View file

@ -0,0 +1,6 @@
{% macro text_input(label, name, id="",type="text") %}
<div class="flex flex-col">
<label for="{{id}}" class="font-bold">{{label}}:</label>
<input class="border rounded p-1 bg-gray-50" type="{{type}}" name="{{name}}" id="{{id}}" />
</div>
{% endmacro text_input %}