| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768 |
- <!DOCTYPE html>
- <html lang="ru">
- <head>
- <meta http-equiv="content-type" content="text/html; charset=UTF-8">
- <title>WarTank bot</title>
- <meta name="author" content="SVI">
- <style>
- html {
- height: 100%;
- }
- body {
- margin: 0;
- color: #fff;
- /* Растягиваем body по высоте html */
- min-height: 100%;
- display: grid;
- grid-template-rows: auto 1fr auto;
- }
- header {
- background: rgb(88, 88, 184);
- }
- main {
- background: rgb(141, 112, 112);
- }
- footer {
- background: black;
- }
- .my-label {
- display: inline-block;
- background: rgb(12, 54, 56);
- font-family: 'Courier New', Courier, monospace;
- margin-top: 0.5em;
- margin-left: 0.5em;
- }
- </style>
- </head>
- <body>
- <header role="banner">
- <b>WarTank bot [FunnySoft 2022]</b>
- </header>
- <main role="main">
- <h2>Управление ботами</h2>
- <div class="my-label">
- Боты:<div id="/bot/list"></div>
- <hr width="95%" height="4px">
- <button type="button" name="add" value="Доб" onclick="user_add()">Добавить</button>
- <div style="background:red;" id="/bot/list/err"></div>
- </div>
- <hr width="95%" height="4px">
- <div>
- <br>
- <button style="background:red;" type="button" name="close" value="Закрыть"
- onclick="close_win()">Закрыть</button>
- </div>
- </main>
- <footer role="contentinfo">
- <div class="footer">Окно управления игроками игры.</div>
- </footer>
- </body>
- </html>
|