Spaces:
Running
Running
| <html lang="en"> | |
| <head> | |
| <meta charset="UTF-8"> | |
| <meta name="viewport" content="width=device-width, initial-scale=1.0"> | |
| <title>Training - Staff Safety Dashboard</title> | |
| <script src="https://cdn.tailwindcss.com"></script> | |
| <script src="https://unpkg.com/lucide@latest"></script> | |
| <link href="https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&display=swap" rel="stylesheet"> | |
| <style> | |
| body { | |
| font-family: 'Inter', sans-serif; | |
| background: #0f172a; | |
| color: #e2e8f0; | |
| } | |
| .neu-dark { | |
| background: linear-gradient(145deg, #1e293b, #0f172a); | |
| box-shadow: | |
| 8px 8px 16px rgba(0,0,0,0.5), | |
| -8px -8px 16px rgba(255,255,255,0.03), | |
| inset 1px 1px 1px rgba(255,255,255,0.05); | |
| } | |
| .neu-dark-inset { | |
| background: #0f172a; | |
| box-shadow: | |
| inset 4px 4px 8px rgba(0,0,0,0.6), | |
| inset -4px -4px 8px rgba(255,255,255,0.02); | |
| } | |
| .neu-pressed { | |
| box-shadow: | |
| inset 4px 4px 8px rgba(0,0,0,0.5), | |
| inset -4px -4px 8px rgba(255,255,255,0.05); | |
| } | |
| .neu-btn { | |
| background: linear-gradient(145deg, #1e293b, #0f172a); | |
| box-shadow: | |
| 4px 4px 8px rgba(0,0,0,0.4), | |
| -4px -4px 8px rgba(255,255,255,0.03); | |
| transition: all 0.2s ease; | |
| } | |
| .text-accent { color: #eab308; } | |
| .bg-accent { background-color: #eab308; } | |
| .border-accent { border-color: rgba(234, 179, 8, 0.3); } | |
| .progress-ring { | |
| transform: rotate(-90deg); | |
| transform-origin: 50% 50%; | |
| } | |
| </style> | |
| </head> | |
| <body class="bg-slate-950 text-slate-200"> | |
| <!-- Sidebar --> | |
| <aside id="sidebar" class="fixed left-0 top-0 h-full w-64 neu-dark border-r border-slate-800/50 transform -translate-x-full md:translate-x-0 transition-transform duration-300 z-40"> | |
| <div class="p-6 border-b border-slate-800/50"> | |
| <div class="flex items-center space-x-3"> | |
| <div class="w-10 h-10 neu-dark-inset rounded-lg flex items-center justify-center border border-accent"> | |
| <i data-lucide="shield-check" class="text-accent w-6 h-6"></i> | |
| </div> | |
| <div> | |
| <h1 class="font-bold text-lg text-slate-100">SafeTeam</h1> | |
| <p class="text-xs text-slate-500">Safety Management</p> | |
| </div> | |
| </div> | |
| </div> | |
| <nav class="p-4 space-y-2"> | |
| <a href="index.html" class="flex items-center space-x-3 px-4 py-3 text-slate-400 neu-btn rounded-xl hover:text-accent transition-colors"> | |
| <i data-lucide="layout-dashboard" class="w-5 h-5"></i> | |
| <span>Dashboard</span> | |
| </a> | |
| <a href="incidents.html" class="flex items-center space-x |