Files
lapp/templates/login.html
T

23 lines
641 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">
<img
src="{{ url_for('static', filename='wwwsuynl.png') }}"
alt="Suy.nl logo"
style="width: 6em; height: 6em;"
>
</div>
2026-01-01 21:07:34 +01:00
<h3 class="text-center mb-4"><img style="width: 3em; height: 3em" src="/static/login.svg"></h3>
<form method="post">
<input class="form-control mb-3" name="name" placeholder="Name" required>
<input class="form-control mb-3" name="password" type="password" placeholder="Password" required>
<input
type="image"
src="/static/save.svg"
alt="Save"
style="width: 2em; height: 2em;"
>
</form>
{% endblock %}