Files
lapp/templates/login.html
T

27 lines
826 B
HTML
Raw Normal View History

2026-01-01 21:07:34 +01:00
{% extends "base.html" %}
{% block content %}
2026-07-18 22:58:38 +02:00
<div class="text-center mb-4">
2026-07-18 23:22:58 +02:00
<div
class="d-inline-block"
style="width: 6em; height: 6em; background: url('{{ url_for('static', filename='wwwsuynl.png') }}') center / cover no-repeat;"
2026-07-18 22:58:38 +02:00
>
2026-07-18 23:22:58 +02:00
<img
src="{{ url_for('static', filename='login.svg') }}"
alt="Login"
style="width: 6em; height: 6em;"
>
</div>
2026-07-18 22:58:38 +02:00
</div>
2026-07-22 22:07:55 +02:00
<form method="post" autocomplete="off">
<input class="form-control mb-3" name="name" placeholder="{{ name_placeholder }}" autocomplete="off" required>
<input class="form-control mb-3" name="password" type="password" placeholder="{{ password_placeholder }}" autocomplete="new-password" required>
2026-01-01 21:07:34 +01:00
<input
type="image"
src="/static/save.svg"
alt="Save"
style="width: 2em; height: 2em;"
>
</form>
{% endblock %}