File size: 11,381 Bytes
9c641f2 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 | <!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Patient Records | MedCode AI</title>
<link rel="icon" type="image/x-icon" href="/static/favicon.ico">
<script src="https://cdn.tailwindcss.com"></script>
<link href="https://unpkg.com/aos@2.3.1/dist/aos.css" rel="stylesheet">
<script src="https://unpkg.com/aos@2.3.1/dist/aos.js"></script>
<script src="https://cdn.jsdelivr.net/npm/feather-icons/dist/feather.min.js"></script>
<script src="https://unpkg.com/feather-icons"></script>
</head>
<body class="bg-gray-50 font-sans">
<div class="flex h-screen overflow-hidden">
<!-- Sidebar (same as index.html) -->
<div class="sidebar bg-white shadow-lg w-64 flex flex-col">
<div class="p-4 flex items-center space-x-3 border-b">
<div class="bg-blue-500 p-2 rounded-lg">
<i data-feather="activity" class="text-white"></i>
</div>
<h1 class="logo-text text-xl font-bold text-gray-800">MedCode AI</h1>
</div>
<div class="flex-1 overflow-y-auto p-4 space-y-2">
<a href="index.html" class="nav-item flex items-center space-x-3 p-3 rounded-lg hover:bg-gray-100 text-gray-700">
<i data-feather="home" class="text-blue-600"></i>
<span class="nav-text">Dashboard</span>
</a>
<a href="code-converter.html" class="nav-item flex items-center space-x-3 p-3 rounded-lg hover:bg-gray-100 text-gray-700">
<i data-feather="code" class="text-purple-600"></i>
<span class="nav-text">Code Converter</span>
</a>
<a href="patients.html" class="nav-item flex items-center space-x-3 p-3 rounded-lg bg-blue-50 text-blue-600">
<i data-feather="users" class="text-pink-600"></i>
<span class="nav-text font-medium">Patient Records</span>
</a>
<a href="history.html" class="nav-item flex items-center space-x-3 p-3 rounded-lg hover:bg-gray-100 text-gray-700">
<i data-feather="clock" class="text-yellow-600"></i>
<span class="nav-text">Search History</span>
</a>
<a href="resources.html" class="nav-item flex items-center space-x-3 p-3 rounded-lg hover:bg-gray-100 text-gray-700">
<i data-feather="book" class="text-green-600"></i>
<span class="nav-text">Coding Resources</span>
</a>
<a href="settings.html" class="nav-item flex items-center space-x-3 p-3 rounded-lg hover:bg-gray-100 text-gray-700">
<i data-feather="settings" class="text-gray-600"></i>
<span class="nav-text">Settings</span>
</a>
</div>
<div class="p-4 border-t">
<div class="flex items-center space-x-3">
<img src="http://static.photos/people/200x200/1" class="w-10 h-10 rounded-full" alt="User">
<div>
<p class="font-medium">Dr. Sarah Johnson</p>
<p class="text-sm text-gray-500">Cardiologist</p>
</div>
</div>
</div>
</div>
<!-- Main Content -->
<div class="flex-1 overflow-y-auto">
<!-- Header -->
<header class="bg-white shadow-sm p-4 flex justify-between items-center">
<h2 class="text-xl font-semibold text-gray-800">Patient Records</h2>
<div class="flex items-center space-x-4">
<div class="relative">
<input type="text" placeholder="Search patients..." class="pl-10 pr-4 py-2 border rounded-lg focus:outline-none focus:ring-2 focus:ring-blue-500">
<i data-feather="search" class="absolute left-3 top-2.5 text-gray-400"></i>
</div>
<button class="bg-blue-600 text-white px-4 py-2 rounded-lg hover:bg-blue-700 flex items-center">
<i data-feather="plus" class="mr-2"></i> New Patient
</button>
</div>
</header>
<!-- Patient Content -->
<main class="p-6">
<!-- Patient List -->
<div class="bg-white rounded-xl shadow-sm border border-gray-100 overflow-hidden">
<div class="grid grid-cols-12 bg-gray-50 p-4 border-b font-medium text-gray-600">
<div class="col-span-4">Patient</div>
<div class="col-span-2">DOB</div>
<div class="col-span-2">Last Visit</div>
<div class="col-span-2">Status</div>
<div class="col-span-2">Actions</div>
</div>
<!-- Patient Rows -->
<div class="divide-y divide-gray-200">
<!-- Patient 1 -->
<div class="grid grid-cols-12 p-4 hover:bg-gray-50 items-center">
<div class="col-span-4 flex items-center space-x-3">
<img src="http://static.photos/people/200x200/2" class="w-10 h-10 rounded-full" alt="Patient">
<div>
<p class="font-medium">Michael Brown</p>
<p class="text-sm text-gray-500">ID: MB123456</p>
</div>
</div>
<div class="col-span-2 text-sm text-gray-600">05/12/1978</div>
<div class="col-span-2 text-sm text-gray-600">Today, 10:30 AM</div>
<div class="col-span-2">
<span class="px-2 py-1 text-xs rounded-full bg-green-100 text-green-800">Active</span>
</div>
<div class="col-span-2 flex space-x-2">
<button class="p-2 text-blue-600 hover:bg-blue-50 rounded-lg">
<i data-feather="eye" class="w-4 h-4"></i>
</button>
<button class="p-2 text-gray-600 hover:bg-gray-50 rounded-lg">
<i data-feather="edit" class="w-4 h-4"></i>
</button>
</div>
</div>
<!-- Patient 2 -->
<div class="grid grid-cols-12 p-4 hover:bg-gray-50 items-center">
<div class="col-span-4 flex items-center space-x-3">
<img src="http://static.photos/people/200x200/3" class="w-10 h-10 rounded-full" alt="Patient">
<div>
<p class="font-medium">Emily Wilson</p>
<p class="text-sm text-gray-500">ID: EW789012</p>
</div>
</div>
<div class="col-span-2 text-sm text-gray-600">08/23/1985</div>
<div class="col-span-2 text-sm text-gray-600">2 days ago</div>
<div class="col-span-2">
<span class="px-2 py-1 text-xs rounded-full bg-green-100 text-green-800">Active</span>
</div>
<div class="col-span-2 flex space-x-2">
<button class="p-2 text-blue-600 hover:bg-blue-50 rounded-lg">
<i data-feather="eye" class="w-4 h-4"></i>
</button>
<button class="p-2 text-gray-600 hover:bg-gray-50 rounded-lg">
<i data-feather="edit" class="w-4 h-4"></i>
</button>
</div>
</div>
<!-- Patient 3 -->
<div class="grid grid-cols-12 p-4 hover:bg-gray-50 items-center">
<div class="col-span-4 flex items-center space-x-3">
<img src="http://static.photos/people/200x200/4" class="w-10 h-10 rounded-full" alt="Patient">
<div>
<p class="font-medium">Robert Davis</p>
<p class="text-sm text-gray-500">ID: RD345678</p>
</div>
</div>
<div class="col-span-2 text-sm text-gray-600">11/05/1965</div>
<div class="col-span-2 text-sm text-gray-600">1 week ago</div>
<div class="col-span-2">
<span class="px-2 py-1 text-xs rounded-full bg-yellow-100 text-yellow-800">Follow-up</span>
</div>
<div class="col-span-2 flex space-x-2">
<button class="p-2 text-blue-600 hover:bg-blue-50 rounded-lg">
<i data-feather="eye" class="w-4 h-4"></i>
</button>
<button class="p-2 text-gray-600 hover:bg-gray-50 rounded-lg">
<i data-feather="edit" class="w-4 h-4"></i>
</button>
</div>
</div>
</div>
<!-- Pagination -->
<div class="p-4 border-t flex justify-between items-center">
<div class="text-sm text-gray-600">
Showing 1 to 3 of 12 patients
</div>
<div class="flex space-x-2">
<button class="px-3 py-1 border rounded-lg text-gray-600 hover:bg-gray-50">
Previous
</button>
<button class="px-3 py-1 border rounded-lg bg-blue-600 text-white">
1
</button>
<button class="px-3 py-1 border rounded-lg text-gray-600 hover:bg-gray-50">
2
</button>
<button class="px-3 py-1 border rounded-lg text-gray-600 hover:bg-gray-50">
3
</button>
<button class="px-3 py-1 border rounded-lg text-gray-600 hover:bg-gray-50">
Next
</button>
</div>
</div>
</div>
</main>
</div>
</div>
<script>
AOS.init();
feather.replace();
</script>
</body>
</html>
|