This commit is contained in:
2018-01-24 10:53:17 +02:00
commit 57e6bd5608
10 changed files with 280 additions and 0 deletions

View File

@@ -0,0 +1,15 @@
<!doctype html>
<head>
<title>Flees</title>
<link rel=stylesheet type=text/css href="{{ url_for('static', filename='style.css') }}">
<script src="{{ url_for('static', filename='script.js') }}" type="text/javascript"></script>
</head>
<body>
<div class=page>
{% for message in get_flashed_messages() %}
<div class=flash>{{ message }}</div>
{% endfor %}
{% block body %}{% endblock %}
</div>
</body>