| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849 |
- <!doctype html>
- <HTML lang="ru">
- <head>
- <title>ВарТанк</title>
- <meta charset="utf-8">
- <meta name="viewport" content="width=device-width, initial-scale=1">
- <meta pragma="no-cache">
- <!-- Bootstrap CSS -->
- <link href="/static/css/bootstrap.min.css" rel="stylesheet">
- <!-- htmx -->
- <script src="/static/js/htmx.min.js"></script>
- <script src="/static/js/hyperscript.min.js"></script>
- </head>
- <body hx-boost="true">
- <div id="header" class="container-fluid"><!-- начало боди-контейнера -->
- <div class="container-fluid align-middle"><!-- контейнер заголовка -->
- <div class="row border align-items-center">
- <div class="col-auto border border-primary rounded btn btn-dark">
- <h1>WarTank</h1>
- </div>
- <div class="col">
- <a class="btn btn-primary" href="/">Главная</a>
- <a class="btn btn-primary" hx-post="/gui/bot/list_show" hx-target="#main">Список ботов</a>
- {.btn_lst_bot}
- <a class="btn btn-primary" hx-post="/monolit" hx-target="body">Монолит</a>
- </div>
- </div>
- </div>
- <div class="counter">
- <button _="on click increment the textContent of the next <output/>">Прибавить</button>
- [<output>0</output>]
- <button _="on click decrement the textContent of the previous <output/>">убавить</button><br>
- </div>
- <br>
- </div>
- <div id="main" hx-post="/gui/login_show" hx-trigger="load">
- {.main}
- </div>
- <div id="foother" class="container-fluid border rounded text-info bg-dark">
- <span>FunnySoft 20021-2025 (c)</span>
- <span hx-post="/api/uptime" hx-trigger="every 5s"></span>
- <span hx-post="/api/count_start" hx-trigger="every 30s"></span>
- </div>
- <script src="/static/js/bootstrap.bundle.min.js"></script>
- </body>
- </HTML>
|