110 lines
4.5 KiB
HTML
110 lines
4.5 KiB
HTML
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
<title>CuraFlow Lab | Diagnostics & Reports</title>
|
|
<link rel="stylesheet" href="index.css">
|
|
<link rel="stylesheet" href="dashboard.css">
|
|
<link rel="stylesheet" href="lab.css">
|
|
<link href="https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&family=Outfit:wght@600;700&display=swap" rel="stylesheet">
|
|
</head>
|
|
<body class="dashboard-body">
|
|
<aside class="sidebar">
|
|
<div class="logo">
|
|
<span class="logo-icon">C</span>
|
|
<span class="logo-text">CuraFlow</span>
|
|
</div>
|
|
<nav class="side-nav">
|
|
<a href="dashboard.html"><span>🏠</span> Overview</a>
|
|
<a href="dashboard.html"><span>👥</span> Queue</a>
|
|
<a href="dashboard.html"><span>📂</span> Patients</a>
|
|
<a href="pharmacy.html"><span>💊</span> Pharmacy</a>
|
|
<a href="lab.html" class="active"><span>🔬</span> Lab</a>
|
|
<a href="billing.html"><span>💳</span> Billing & Accounts</a>
|
|
<a href="staff.html"><span>👔</span> Staff & Payroll</a>
|
|
<a href="settings.html"><span>⚙️</span> Settings</a>
|
|
</nav>
|
|
</aside>
|
|
|
|
<main class="dashboard-main">
|
|
<header class="dash-header">
|
|
<div class="header-title">
|
|
<h1>Lab & Diagnostics</h1>
|
|
<p>Track test samples and deliver AI-explained reports to patients.</p>
|
|
</div>
|
|
<div class="header-actions">
|
|
<button class="btn-primary">Generate Report</button>
|
|
</div>
|
|
</header>
|
|
|
|
<section class="stats-row">
|
|
<div class="stat-card">
|
|
<span>Pending Tests</span>
|
|
<h3>14 Samples</h3>
|
|
<small class="text-accent">4 Urgent</small>
|
|
</div>
|
|
<div class="stat-card">
|
|
<span>Avg. TAT</span>
|
|
<h3>4.2 Hours</h3>
|
|
<small class="text-accent">↑ 0.5h improvement</small>
|
|
</div>
|
|
<div class="stat-card">
|
|
<span>WhatsApp Delivery</span>
|
|
<h3>98%</h3>
|
|
<small>Auto-sent successfully</small>
|
|
</div>
|
|
</section>
|
|
|
|
<section class="queue-section">
|
|
<div class="section-card">
|
|
<div class="card-header">
|
|
<h2>Live Test Queue</h2>
|
|
</div>
|
|
<table class="queue-table">
|
|
<thead>
|
|
<tr>
|
|
<th>Lab ID</th>
|
|
<th>Patient Name</th>
|
|
<th>Test Name</th>
|
|
<th>Urgency</th>
|
|
<th>Status</th>
|
|
<th>Actions</th>
|
|
</tr>
|
|
</thead>
|
|
<tbody>
|
|
<tr class="active-row">
|
|
<td>#LAB-501</td>
|
|
<td><strong>Suresh Kumar</strong></td>
|
|
<td>CBC + Blood Sugar</td>
|
|
<td><span class="triage-pill urgent">Urgent</span></td>
|
|
<td><span class="status-pill in-room">Processing</span></td>
|
|
<td><button class="btn-small">Add Results</button></td>
|
|
</tr>
|
|
<tr>
|
|
<td>#LAB-502</td>
|
|
<td><strong>Anjali Singh</strong></td>
|
|
<td>Lipid Profile</td>
|
|
<td><span class="triage-pill routine">Routine</span></td>
|
|
<td><span class="status-pill waiting">Collecting</span></td>
|
|
<td><button class="btn-small secondary">Update</button></td>
|
|
</tr>
|
|
</tbody>
|
|
</table>
|
|
</div>
|
|
|
|
<div class="side-panel">
|
|
<div class="section-card ai-report-card">
|
|
<h3>✨ AI Report Explainer</h3>
|
|
<div class="insight-item">
|
|
<small>CBC Analysis (#LAB-498)</small>
|
|
<p>Hemoglobin (9.2) is low. Suggesting iron-rich diet and further Vitamin B12 check.</p>
|
|
<button class="btn-small btn-block">Review & Send</button>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</section>
|
|
</main>
|
|
</body>
|
|
</html>
|