You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
33 lines
970 B
33 lines
970 B
<!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>
|
|
{% 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>
|