win_bot_add.html 1.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869
  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. <h2>Добавление бота</h2>
  43. <div class="my-label">
  44. Бот:<div>
  45. Логин:<input id="/bot/name" type="text" />
  46. Пароль:<input id="/bot/pass" type="text" />
  47. </div>
  48. <button type="button" name="add" value="Доб" onclick="add()">Добавить</button>
  49. <div style="background:red;" id="/bot/err"></div>
  50. </div>
  51. <hr width="95%" height="4px">
  52. <div>
  53. <button style="background:red;" type="button" name="close" value="Закрыть"
  54. onclick="close_win()">Закрыть</button>
  55. </div>
  56. </main>
  57. <footer role="contentinfo">
  58. <div class="footer">Окно добавления бота</div>
  59. </footer>
  60. </body>
  61. </html>