/
Noriyki
/
VibeCodeBot
Обзор
Документация
Войти
/
Noriyki
/
VibeCodeBot
Код
Запросы
2
Задачи
Вики
Пакеты
0
Релизы
0
CI/CD
Аналитика
Безопасность
fronted_bot
templates/create_team.html
79 строк
3 KB
Noriyki
refactor(frontend): работа с routers
18 фев 2026, 17:37
18 фев 2026, 17:37
7c307dc
Код
Авторство
О чём код?
<!DOCTYPE html> <html lang="ru"> <head> <meta charset="UTF-8" /> <meta name="viewport" content="width=device-width, initial-scale=1.0" /> <title>Admin Panel</title> <link rel="stylesheet" href="{{ url_for('static', filename='css/stats.css') }}"> </head> <body> <div class="app"> <header class="topbar"> <div class="brand"> <h1 class="brand__title">ADMIN PANEL</h1> <img class="brand__logo" src="{{url_for('static', filename='img/main_logo.png') }}" alt="Logo" /> </div> </header> <main class="content"> <div class="container"> <div class="page"> <!-- Задняя панель под команды --> <div class="teams-panel"> <div class="statistic" > <h1 class="statistic_txt">Создание команды</h1> </div> <div class="enter_team" > <h1 class="enter_team_text">Введите команду: <div class="button-icon"> <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512" class="logo__svg" aria-hidden="true"> <g transform="translate(0,512) scale(0.1,-0.1)" fill="currentColor" stroke="none"> <path d="M2617 4035 c-154 -39 -325 -169 -400 -305 -75 -138 -102 -317 -68 -460 43 -180 179 -351 341 -428 218 -103 443 -89 635 40 95 63 163 140 215 242 53 107 73 203 67 326 -14 259 -174 474 -425 568 -85 32 -272 40 -365 17z"/> <path d="M3700 4038 c-25 -6 -47 -12 -49 -14 -2 -2 10 -25 27 -51 205 -319 211 -747 17 -1088 -25 -43 -45 -79 -45 -81 0 -10 123 -28 195 -27 286 1 526 186 611 469 22 72 25 235 5 314 -7 30 -31 93 -53 140 -76 160 -242 293 -418 334 -72 17 -221 19 -290 4z"/> <path d="M640 3310 l0 -320 -320 0 -320 0 0 -215 0 -215 320 0 320 0 0 -320 0 -320 215 0 215 0 0 320 0 320 320 0 320 0 -2 213 -3 212 -317 3 -318 2 -2 318 -3 317 -212 3 -213 2 0 -320z"/> <path d="M2622 2339 c-242 -20 -554 -104 -757 -203 -183 -90 -285 -180 -342 -302 -28 -59 -28 -60 -31 -306 l-4 -248 1282 0 1281 0 -3 258 -3 257 -27 56 c-35 70 -131 167 -225 226 -213 133 -552 233 -888 262 -132 12 -136 12 -283 0z"/> <path d="M4233 2267 c104 -104 172 -214 218 -352 21 -65 23 -91 27 -352 l4 -283 320 0 319 0 -3 253 c-3 249 -3 253 -30 309 -88 188 -358 343 -768 443 -58 14 -111 25 -117 25 -7 0 7 -19 30 -43z"/> </g> </svg> </div></h1> </div> <form method="post"> <div class="vanished"> <input id="team" name="team_name" class="team_input" minlength="3" maxlength="20" type="text" placeholder="@place team name here"> </div> <div class="buttons"> <button type="submit" class="button_ct" onclick="toggleMenu(this)"> <span>Создать команду</span> </button> </div> </form> </div> </div> </div> </main> <footer class="down"> <button onclick="location.href = '{{url_for('pages.index')}}'" class="back-btn">← Back</button> </footer> </div> </body> </html>