44 lines
1.9 KiB
HTML
44 lines
1.9 KiB
HTML
<!DOCTYPE html>
|
|
<html lang="en" data-bs-theme="dark">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<title>Меню отчетов</title>
|
|
<link href="/static/css/main.css" type="text/css" rel="stylesheet">
|
|
<link
|
|
href="https://cdn.jsdelivr.net/npm/bootstrap@5.3.3/dist/css/bootstrap.min.css"
|
|
rel="stylesheet"
|
|
/>
|
|
<link
|
|
href="https://getbootstrap.com/docs/5.3/assets/css/docs.css"
|
|
rel="stylesheet"
|
|
/>
|
|
<script src="https://cdn.jsdelivr.net/npm/bootstrap@5.3.3/dist/js/bootstrap.bundle.min.js"></script>
|
|
</head>
|
|
<body class="p-3">
|
|
<div class="row flex-nowrap justify-content-between">
|
|
<div class="col-1 pt-1"></div>
|
|
<div class="col-10 text-center">
|
|
<label class="display-5 fw-bold">Выберите вариант отчетов</label>
|
|
</div>
|
|
<div class="col-1 d-flex justify-content-end align-items-center">
|
|
<a href="{{ url_for('logout') }}"><button class="btn btn-danger">Выход</button></a>
|
|
</div>
|
|
</div>
|
|
<div class="container">
|
|
<div class="row justify-content-center">
|
|
<div class="col-12 d-flex justify-content-center">
|
|
<div class="btn-group py-5" role="group" aria-label="Basic example">
|
|
<a href="{{ url_for('report_bp.create') }}"><button type="button" class="btn btn-primary me-2">Создать отчет</button></a>
|
|
<a href="{{ url_for('report_bp.view') }}"><button type="button" class="btn btn-secondary">Читать отчеты</button></a>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
<div class="row justify-content-center">
|
|
<div class="col-12 d-flex justify-content-center">
|
|
<a href="{{ url_for('index') }}"><button class="btn btn-secondary">Главное меню</button></a>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</body>
|
|
</html>
|