latosa/templates/index.html

42 lines
1.2 KiB
HTML
Raw Normal View History

2024-03-02 16:15:54 +01:00
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8" />
<meta http-equiv="x-ua-compatible" content="ie=edge" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<link rel="stylesheet" href="{{url_for('static', filename='simple.min.css')}}">
<link rel="stylesheet" href="{{url_for('static', filename='main.css')}}">
<script src="{{url_for('static', filename='main.js')}}"></script>
<title>{{i18n.head.title}}</title>
<link rel="icon" href="/favicon.ico" />
</head>
<body>
2024-03-02 16:34:15 +01:00
{% with messages = get_flashed_messages() %}
{% if messages %}
<ul>
{% for message in messages %}
<li class="notice">{{ message }}</li>
{% endfor %}
</ul>
{% endif %}
{% endwith %}
2024-03-02 16:15:54 +01:00
{% block content %}
<h1>{{i18n.body.h1}}</h1>
<form action="" method="post" novalidate>
{{ form.hidden_tag() }}
<p>
{{ form.username.label }}<br>
{{ form.username(size=32) }}
</p>
<p>
{{ form.password.label }}<br>
{{ form.password(size=32) }}
</p>
<p>{{ form.submit() }}</p>
</form>
{% endblock %}
</body>
</html>