30 lines
947 B
HTML
30 lines
947 B
HTML
<!doctype html>
|
|
<html>
|
|
<head>
|
|
<meta charset=utf-8/>
|
|
<title>Shop</title>
|
|
<script language="javascript" src="{{ url_for('static', filename='script.js') }}"></script>
|
|
<script language="javascript" src="{{ url_for('static', filename='table.js') }}"></script>
|
|
<link rel=stylesheet type=text/css href="{{ url_for('static', filename='style.css') }}">
|
|
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
|
|
<meta name="HandheldFriendly" content="true" />
|
|
<meta name="viewport" content="width=device-width, height=device-height, user-scalable=yes" />
|
|
</head>
|
|
<body>
|
|
<div class=page>
|
|
<a href="{{ url_for('list_shops') }}">List shops</a>
|
|
<a href="#" onclick="reload();">Reload page</a>
|
|
<a href="{{ url_for('logout') }}">Logout</a>
|
|
|
|
|
|
<div class=metanav>
|
|
</div>
|
|
{% for message in get_flashed_messages() %}
|
|
<div class=flash>{{ message }}</div>
|
|
{% endfor %}
|
|
{% block body %}{% endblock %}
|
|
</div>
|
|
</body>
|
|
|
|
</html>
|