nixie-ci/nixie-server/templates/inputs.tera.html
Marcel Müller 79305724f2 Style login page
Signed-off-by: Marcel Müller <neikos@neikos.email>
2026-01-18 13:18:35 +01:00

6 lines
273 B
HTML

{% 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 %}