22 lines
684 B
HTML
22 lines
684 B
HTML
<!DOCTYPE html>
|
|
<html lang="ru">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<title>Запросы</title>
|
|
<link href="/static/css/main.css" type="text/css" rel="stylesheet">
|
|
</head>
|
|
<body>
|
|
<div class="logout">
|
|
<a href="{{ url_for('logout') }}"><button>Выход</button></a>
|
|
</div>
|
|
<h1>Выберите вариант запроса</h1>
|
|
<div class="buttons_menu">
|
|
{% for point in options %}
|
|
<a href="{{ url_for(point['url']) }}"><button>{{ point['name'] }}</button></a>
|
|
{% endfor %}
|
|
</div>
|
|
<div class="return">
|
|
<a href="{{ url_for('index') }}"><button>Главное меню</button></a>
|
|
</div>
|
|
</body>
|
|
</html> |