win_main.html 1.7 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970
  1. <!DOCTYPE html>
  2. <html lang="ru">
  3. <head>
  4. <meta http-equiv="content-type" content="text/html; charset=UTF-8">
  5. <title>WarTank bot</title>
  6. <meta name="author" content="SVI">
  7. <style>
  8. html {
  9. height: 100%;
  10. }
  11. body {
  12. margin: 0;
  13. color: #fff;
  14. /* Растягиваем body по высоте html */
  15. min-height: 100%;
  16. display: grid;
  17. grid-template-rows: auto 1fr auto;
  18. }
  19. header {
  20. background: rgb(88, 88, 184);
  21. }
  22. main {
  23. background: rgb(141, 112, 112);
  24. }
  25. footer {
  26. background: black;
  27. }
  28. .my-label {
  29. display: inline-block;
  30. background: rgb(12, 54, 56);
  31. font-family: 'Courier New', Courier, monospace;
  32. margin-top: 0.5em;
  33. margin-left: 0.5em;
  34. }
  35. </style>
  36. </head>
  37. <body>
  38. <header role="banner">
  39. <b>WarTank bot [FunnySoft 2022]</b>
  40. </header>
  41. <main role="main">
  42. <div id="status"><b>Статус:</b></div>
  43. <div class="my-label">
  44. Время сервера:<div id="/server/time"></div>
  45. </div>
  46. <div class="my-label">
  47. Пинг сервера:<div id="/server/ping"></div>
  48. </div>
  49. <div class="my-label">
  50. Аптайм сервера:<div id="/serv/uptime"></div>
  51. </div>
  52. <hr width="95%" height="4px">
  53. <div>
  54. <button type="button" name="users" value="Полз" onclick="bot_list()">Список ботов</button>
  55. <button style="background:red;" type="button" name="close" value="Выход" onclick="close_win()">Выход</button>
  56. </div>
  57. </main>
  58. <footer role="contentinfo">
  59. <div class="footer">Для правильной работы программы необходимо запустить <code>server</code>.</div>
  60. </footer>
  61. </body>
  62. </html>