feat(admin): add Users management (list/create/reset/delete/toggle), seed test users; improve UI with modern styles

This commit is contained in:
2025-09-04 14:08:15 +03:00
parent e22823cbbd
commit d54e12123b
4 changed files with 202 additions and 0 deletions

8
static/style.css Normal file
View File

@@ -0,0 +1,8 @@
/* Modern tweaks */
:root { --brand-bg: #e9f6ff; }
body { background-color: #f6f8fb; }
.navbar { background: var(--brand-bg) !important; border-bottom: 1px solid rgba(0,0,0,0.05); }
.card { border: 1px solid rgba(0,0,0,0.05); box-shadow: 0 2px 8px rgba(0,0,0,0.04); }
.table thead th { font-weight: 600; color: #495057; }
.btn { transition: all .2s ease; }
.btn:hover { transform: translateY(-1px); box-shadow: 0 4px 12px rgba(0,0,0,0.08); }