/
DexScen
/
ProjectPOH
Обзор
Документация
Войти
/
DexScen
/
ProjectPOH
Код
Запросы
0
Задачи
Вики
Пакеты
0
Релизы
0
CI/CD
Аналитика
Безопасность
master
frontend/admin.html
47 строк
1 KB
Александр
initial prototype ready
29 апр 2026, 06:02
29 апр 2026, 06:02
7af145a
Код
Авторство
О чём код?
<!doctype html> <html lang="ru"> <head> <meta charset="UTF-8" /> <meta name="viewport" content="width=device-width, initial-scale=1.0" /> <title>ProjectPOH — Админка</title> <link rel="stylesheet" href="/assets/css/styles.css" /> </head> <body> <div id="nav-root"></div> <main class="page"> <div class="container grid"> <h1>Админка пользователей</h1> <div id="adminNotice" class="notice hidden"></div> <section id="adminPanel" class="card"> <form id="searchForm" class="form"> <label> Поиск пользователя <input id="searchInput" placeholder="login / email / full name" /> </label> <button type="submit" class="btn">Искать</button> </form> <div class="table-wrap"> <table> <thead> <tr> <th>ID</th> <th>Login</th> <th>Email</th> <th>Full Name</th> <th>Bio</th> <th>Role</th> <th>Actions</th> </tr> </thead> <tbody id="usersBody"></tbody> </table> </div> </section> </div> </main> <script type="module" src="/assets/js/admin.js"></script> </body> </html>