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