34 lines
1.1 KiB
HTML
34 lines
1.1 KiB
HTML
<!doctype html>
|
|
<html>
|
|
<head>
|
|
<meta charset=utf-8/>
|
|
<title>MDShop</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>
|
|
<div class=metanav>
|
|
<a href="{{ url_for('list_shops') }}">Shops</a>
|
|
<div class="dropdown">
|
|
<p onclick="dropDown()" class="dropbtn">⊆⊇</p>
|
|
<div id="Dropdown" class="dropdown-content">
|
|
<a href="#" onclick="reload();">Reload page</a>
|
|
<a href="{{ url_for('profile') }}">Profile</a>
|
|
<a href="{{ url_for('logout') }}">Logout</a>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
{% for message in get_flashed_messages() %}
|
|
<div class=flash>{{ message }}</div>
|
|
{% endfor %}
|
|
{% block body %}{% endblock %}
|
|
</div>
|
|
</body>
|
|
|
|
</html>
|