Jun 28 - Update and polish UI/UX

This commit is contained in:
2026-06-28 19:00:34 -04:00
parent 54fa5b8c87
commit a42fc31fc5
14 changed files with 943 additions and 91 deletions
+2
View File
@@ -28,6 +28,7 @@ from flask_wtf.csrf import CSRFProtect
from .auth import bp as auth_bp
from .tenants import bp as tenants_bp
from .health import bp as health_bp
csrf = CSRFProtect()
@@ -83,6 +84,7 @@ def create_panel_app():
# ── Blueprints ────────────────────────────────────────────────────────
app.register_blueprint(auth_bp) # /login, /logout
app.register_blueprint(tenants_bp) # /tenants/…
app.register_blueprint(health_bp) # /health/
# ── Root redirect ─────────────────────────────────────────────────────
from flask import redirect, url_for