21 lines
742 B
HTML
21 lines
742 B
HTML
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<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">
|
|
<a href="{{ url_for('report_bp.create') }}"><button>Создать отчет</button></a>
|
|
<a href="{{ url_for('report_bp.view') }}"><button>Читать отчеты</button></a>
|
|
</div>
|
|
<div class="return">
|
|
<a href="{{ url_for('index') }}"><button>Главное меню</button></a>
|
|
</div>
|
|
</body>
|
|
</html> |