win_root_set.html 1.7 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667
  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>ВНИМАНИЕ!<br>Этот пароль будет установлен на весь сервер!</h2>
  43. <div id="status"><b>Пароль для root:</b></div>
  44. <div class="my-label">
  45. Пароль:<input id="/root/password/val" type="text" />
  46. <button type="button" name="save" value="Сохранить" onclick="set_pass()">Сохранить</button>
  47. <div style="background:red;" id="/root/password/err"></div>
  48. </div>
  49. <hr width="95%" height="4px">
  50. <div>
  51. <button style="background:red;" type="button" name="close" value="Закрыть"
  52. onclick="close_win()">Закрыть</button>
  53. </div>
  54. </main>
  55. <footer role="contentinfo">
  56. <div class="footer">Для правильной работы программы необходимо запустить <code>server</code>.</div>
  57. </footer>
  58. </body>
  59. </html>