| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869 |
- <!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>
- Логин:<input id="/bot/name" type="text" />
- Пароль:<input id="/bot/pass" type="text" />
- </div>
- <button type="button" name="add" value="Доб" onclick="add()">Добавить</button>
- <div style="background:red;" id="/bot/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">Окно добавления бота</div>
- </footer>
- </body>
- </html>
|