hm_ai_qc_report_tool/templates/components/navbar.html
nickviljoen e6f3e9387e Add modular architecture, core framework, and web UI
New blueprint-based module system (hm_qc, video_qc, video_master,
reporting), core framework (database, config, templates), and
unified web interface with progress tracking and tab navigation.

Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
2026-02-25 11:39:04 +02:00

25 lines
909 B
HTML

<!-- Reusable Navbar Component -->
<nav class="navbar navbar-dark hm-navbar">
<div class="container-fluid">
<!-- Brand -->
<div class="navbar-brand-wrapper">
<span class="navbar-brand mb-0 h1">
<i class="bi bi-shield-check me-2"></i>
HM QC Platform
</span>
<span class="badge bg-secondary ms-2 version-badge">v1.0</span>
</div>
<!-- User Info -->
<div id="userInfo" class="d-flex align-items-center">
<span id="userName" class="text-white me-3">
<i class="bi bi-person-circle me-1"></i>
<span id="userDisplayName"></span>
</span>
<button id="logoutBtn" class="btn btn-sm btn-outline-light">
<i class="bi bi-box-arrow-right me-1"></i>
Logout
</button>
</div>
</div>
</nav>