Anonymous214 commited on
Commit
9c641f2
·
verified ·
1 Parent(s): 056b64a

Build an AI tool that converts doctors’ diagnoses into CPT, HCPCS, and ICD-10 codes. Include useful features for physicians such as a section to input and manage patient information, a dashboard to track recent searches, and any additional tools that would streamline coding and documentation. Ensure every button is fully functional. Each button should link to its own page, and that page should display the content or features described by the button. - Initial Deployment

Browse files
Files changed (8) hide show
  1. README.md +6 -4
  2. code-converter.html +251 -0
  3. history.html +202 -0
  4. index.html +255 -18
  5. patients.html +197 -0
  6. prompts.txt +1 -0
  7. resources.html +232 -0
  8. settings.html +115 -0
README.md CHANGED
@@ -1,10 +1,12 @@
1
  ---
2
- title: Medcode Ai Prototype
3
- emoji: 🌍
4
- colorFrom: pink
5
  colorTo: yellow
6
  sdk: static
7
  pinned: false
 
 
8
  ---
9
 
10
- Check out the configuration reference at https://huggingface.co/docs/hub/spaces-config-reference
 
1
  ---
2
+ title: medcode-ai-prototype
3
+ emoji: 🐳
4
+ colorFrom: green
5
  colorTo: yellow
6
  sdk: static
7
  pinned: false
8
+ tags:
9
+ - deepsite
10
  ---
11
 
12
+ Check out the configuration reference at https://huggingface.co/docs/hub/spaces-config-reference
code-converter.html ADDED
@@ -0,0 +1,251 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <!DOCTYPE html>
2
+ <html lang="en">
3
+ <head>
4
+ <meta charset="UTF-8">
5
+ <meta name="viewport" content="width=device-width, initial-scale=1.0">
6
+ <title>Code Converter | MedCode AI</title>
7
+ <link rel="icon" type="image/x-icon" href="/static/favicon.ico">
8
+ <script src="https://cdn.tailwindcss.com"></script>
9
+ <link href="https://unpkg.com/aos@2.3.1/dist/aos.css" rel="stylesheet">
10
+ <script src="https://unpkg.com/aos@2.3.1/dist/aos.js"></script>
11
+ <script src="https://cdn.jsdelivr.net/npm/feather-icons/dist/feather.min.js"></script>
12
+ <script src="https://unpkg.com/feather-icons"></script>
13
+ </head>
14
+ <body class="bg-gray-50 font-sans">
15
+ <div class="flex h-screen overflow-hidden">
16
+ <!-- Sidebar (same as index.html) -->
17
+ <div class="sidebar bg-white shadow-lg w-64 flex flex-col">
18
+ <div class="p-4 flex items-center space-x-3 border-b">
19
+ <div class="bg-blue-500 p-2 rounded-lg">
20
+ <i data-feather="activity" class="text-white"></i>
21
+ </div>
22
+ <h1 class="logo-text text-xl font-bold text-gray-800">MedCode AI</h1>
23
+ </div>
24
+ <div class="flex-1 overflow-y-auto p-4 space-y-2">
25
+ <a href="index.html" class="nav-item flex items-center space-x-3 p-3 rounded-lg hover:bg-gray-100 text-gray-700">
26
+ <i data-feather="home" class="text-blue-600"></i>
27
+ <span class="nav-text">Dashboard</span>
28
+ </a>
29
+ <a href="code-converter.html" class="nav-item flex items-center space-x-3 p-3 rounded-lg bg-blue-50 text-blue-600">
30
+ <i data-feather="code" class="text-purple-600"></i>
31
+ <span class="nav-text font-medium">Code Converter</span>
32
+ </a>
33
+ <a href="patients.html" class="nav-item flex items-center space-x-3 p-3 rounded-lg hover:bg-gray-100 text-gray-700">
34
+ <i data-feather="users" class="text-pink-600"></i>
35
+ <span class="nav-text">Patient Records</span>
36
+ </a>
37
+ <a href="history.html" class="nav-item flex items-center space-x-3 p-3 rounded-lg hover:bg-gray-100 text-gray-700">
38
+ <i data-feather="clock" class="text-yellow-600"></i>
39
+ <span class="nav-text">Search History</span>
40
+ </a>
41
+ <a href="resources.html" class="nav-item flex items-center space-x-3 p-3 rounded-lg hover:bg-gray-100 text-gray-700">
42
+ <i data-feather="book" class="text-green-600"></i>
43
+ <span class="nav-text">Coding Resources</span>
44
+ </a>
45
+ <a href="settings.html" class="nav-item flex items-center space-x-3 p-3 rounded-lg hover:bg-gray-100 text-gray-700">
46
+ <i data-feather="settings" class="text-gray-600"></i>
47
+ <span class="nav-text">Settings</span>
48
+ </a>
49
+ </div>
50
+ <div class="p-4 border-t">
51
+ <div class="flex items-center space-x-3">
52
+ <img src="http://static.photos/people/200x200/1" class="w-10 h-10 rounded-full" alt="User">
53
+ <div>
54
+ <p class="font-medium">Dr. Sarah Johnson</p>
55
+ <p class="text-sm text-gray-500">Cardiologist</p>
56
+ </div>
57
+ </div>
58
+ </div>
59
+ </div>
60
+
61
+ <!-- Main Content -->
62
+ <div class="flex-1 overflow-y-auto">
63
+ <!-- Header -->
64
+ <header class="bg-white shadow-sm p-4 flex justify-between items-center">
65
+ <h2 class="text-xl font-semibold text-gray-800">Code Converter</h2>
66
+ <div class="flex items-center space-x-4">
67
+ <div class="relative">
68
+ <input type="text" placeholder="Search..." class="pl-10 pr-4 py-2 border rounded-lg focus:outline-none focus:ring-2 focus:ring-blue-500">
69
+ <i data-feather="search" class="absolute left-3 top-2.5 text-gray-400"></i>
70
+ </div>
71
+ <button class="p-2 rounded-full hover:bg-gray-100">
72
+ <i data-feather="bell" class="text-gray-600"></i>
73
+ </button>
74
+ </div>
75
+ </header>
76
+
77
+ <!-- Converter Content -->
78
+ <main class="p-6">
79
+ <div class="bg-white rounded-xl shadow-sm border border-gray-100 p-6 mb-6">
80
+ <h3 class="text-lg font-semibold text-gray-800 mb-4">Convert Diagnosis to Codes</h3>
81
+
82
+ <div class="grid grid-cols-1 lg:grid-cols-3 gap-6">
83
+ <!-- Input Section -->
84
+ <div class="lg:col-span-2">
85
+ <div class="mb-4">
86
+ <label class="block text-sm font-medium text-gray-700 mb-1">Select Patient</label>
87
+ <select class="w-full border rounded-lg p-2 focus:ring-2 focus:ring-blue-500 focus:outline-none">
88
+ <option>Select a patient...</option>
89
+ <option>Michael Brown</option>
90
+ <option>Emily Wilson</option>
91
+ <option>Robert Davis</option>
92
+ <option>Jennifer Lee</option>
93
+ </select>
94
+ </div>
95
+
96
+ <div class="mb-4">
97
+ <label class="block text-sm font-medium text-gray-700 mb-1">Diagnosis Description</label>
98
+ <textarea class="w-full border rounded-lg p-3 h-32 focus:ring-2 focus:ring-blue-500 focus:outline-none" placeholder="Enter the diagnosis in natural language (e.g., 'Patient presents with persistent cough and fever for 3 days')"></textarea>
99
+ </div>
100
+
101
+ <div class="mb-4">
102
+ <label class="block text-sm font-medium text-gray-700 mb-1">Procedure Description (Optional)</label>
103
+ <textarea class="w-full border rounded-lg p-3 h-24 focus:ring-2 focus:ring-blue-500 focus:outline-none" placeholder="Enter any procedures performed (e.g., 'Performed echocardiogram')"></textarea>
104
+ </div>
105
+
106
+ <button class="bg-blue-600 text-white px-6 py-2 rounded-lg hover:bg-blue-700 flex items-center">
107
+ <i data-feather="search" class="mr-2"></i> Generate Codes
108
+ </button>
109
+ </div>
110
+
111
+ <!-- Code Suggestions -->
112
+ <div class="bg-gray-50 p-4 rounded-lg">
113
+ <h4 class="font-medium text-gray-700 mb-3">Suggested Codes</h4>
114
+
115
+ <div class="space-y-4">
116
+ <!-- ICD-10 Codes -->
117
+ <div>
118
+ <div class="flex items-center justify-between mb-2">
119
+ <h5 class="text-sm font-medium text-gray-600">ICD-10 Codes</h5>
120
+ <span class="text-xs text-blue-600 cursor-pointer">View All</span>
121
+ </div>
122
+ <div class="space-y-2">
123
+ <div class="flex justify-between items-center p-2 bg-white rounded border">
124
+ <div>
125
+ <p class="font-medium">J18.9</p>
126
+ <p class="text-xs text-gray-500">Pneumonia, unspecified</p>
127
+ </div>
128
+ <button class="text-blue-600 hover:text-blue-800">
129
+ <i data-feather="copy"></i>
130
+ </button>
131
+ </div>
132
+ <div class="flex justify-between items-center p-2 bg-white rounded border">
133
+ <div>
134
+ <p class="font-medium">R05</p>
135
+ <p class="text-xs text-gray-500">Cough</p>
136
+ </div>
137
+ <button class="text-blue-600 hover:text-blue-800">
138
+ <i data-feather="copy"></i>
139
+ </button>
140
+ </div>
141
+ </div>
142
+ </div>
143
+
144
+ <!-- CPT Codes -->
145
+ <div>
146
+ <div class="flex items-center justify-between mb-2">
147
+ <h5 class="text-sm font-medium text-gray-600">CPT Codes</h5>
148
+ <span class="text-xs text-blue-600 cursor-pointer">View All</span>
149
+ </div>
150
+ <div class="space-y-2">
151
+ <div class="flex justify-between items-center p-2 bg-white rounded border">
152
+ <div>
153
+ <p class="font-medium">99213</p>
154
+ <p class="text-xs text-gray-500">Office outpatient visit 15 min</p>
155
+ </div>
156
+ <button class="text-blue-600 hover:text-blue-800">
157
+ <i data-feather="copy"></i>
158
+ </button>
159
+ </div>
160
+ </div>
161
+ </div>
162
+
163
+ <!-- HCPCS Codes -->
164
+ <div>
165
+ <div class="flex items-center justify-between mb-2">
166
+ <h5 class="text-sm font-medium text-gray-600">HCPCS Codes</h5>
167
+ <span class="text-xs text-blue-600 cursor-pointer">View All</span>
168
+ </div>
169
+ <div class="space-y-2">
170
+ <div class="flex justify-between items-center p-2 bg-white rounded border">
171
+ <div>
172
+ <p class="font-medium">G0008</p>
173
+ <p class="text-xs text-gray-500">Administer pneumococcal vaccine</p>
174
+ </div>
175
+ <button class="text-blue-600 hover:text-blue-800">
176
+ <i data-feather="copy"></i>
177
+ </button>
178
+ </div>
179
+ </div>
180
+ </div>
181
+ </div>
182
+ </div>
183
+ </div>
184
+ </div>
185
+
186
+ <!-- Recent Conversions -->
187
+ <div class="bg-white rounded-xl shadow-sm border border-gray-100 p-6">
188
+ <h3 class="text-lg font-semibold text-gray-800 mb-4">Recent Conversions</h3>
189
+
190
+ <div class="overflow-x-auto">
191
+ <table class="min-w-full divide-y divide-gray-200">
192
+ <thead class="bg-gray-50">
193
+ <tr>
194
+ <th class="px-6 py-3 text-left text-xs font-medium text-gray-500 uppercase tracking-wider">Date</th>
195
+ <th class="px-6 py-3 text-left text-xs font-medium text-gray-500 uppercase tracking-wider">Diagnosis</th>
196
+ <th class="px-6 py-3 text-left text-xs font-medium text-gray-500 uppercase tracking-wider">ICD-10</th>
197
+ <th class="px-6 py-3 text-left text-xs font-medium text-gray-500 uppercase tracking-wider">CPT</th>
198
+ <th class="px-6 py-3 text-left text-xs font-medium text-gray-500 uppercase tracking-wider">Actions</th>
199
+ </tr>
200
+ </thead>
201
+ <tbody class="bg-white divide-y divide-gray-200">
202
+ <tr>
203
+ <td class="px-6 py-4 whitespace-nowrap text-sm text-gray-500">Today, 9:15 AM</td>
204
+ <td class="px-6 py-4 text-sm text-gray-900">Hypertension with heart failure</td>
205
+ <td class="px-6 py-4 whitespace-nowrap">
206
+ <span class="bg-blue-100 text-blue-800 px-2 py-1 rounded text-xs">I11.0</span>
207
+ </td>
208
+ <td class="px-6 py-4 whitespace-nowrap">
209
+ <span class="bg-purple-100 text-purple-800 px-2 py-1 rounded text-xs">99214</span>
210
+ </td>
211
+ <td class="px-6 py-4 whitespace-nowrap text-sm text-gray-500">
212
+ <button class="text-blue-600 hover:text-blue-900 mr-3">
213
+ <i data-feather="copy" class="w-4 h-4"></i>
214
+ </button>
215
+ <button class="text-gray-600 hover:text-gray-900">
216
+ <i data-feather="trash-2" class="w-4 h-4"></i>
217
+ </button>
218
+ </td>
219
+ </tr>
220
+ <tr>
221
+ <td class="px-6 py-4 whitespace-nowrap text-sm text-gray-500">Yesterday, 2:30 PM</td>
222
+ <td class="px-6 py-4 text-sm text-gray-900">Type 2 diabetes with hyperglycemia</td>
223
+ <td class="px-6 py-4 whitespace-nowrap">
224
+ <span class="bg-blue-100 text-blue-800 px-2 py-1 rounded text-xs">E11.65</span>
225
+ </td>
226
+ <td class="px-6 py-4 whitespace-nowrap">
227
+ <span class="bg-purple-100 text-purple-800 px-2 py-1 rounded text-xs">99213</span>
228
+ </td>
229
+ <td class="px-6 py-4 whitespace-nowrap text-sm text-gray-500">
230
+ <button class="text-blue-600 hover:text-blue-900 mr-3">
231
+ <i data-feather="copy" class="w-4 h-4"></i>
232
+ </button>
233
+ <button class="text-gray-600 hover:text-gray-900">
234
+ <i data-feather="trash-2" class="w-4 h-4"></i>
235
+ </button>
236
+ </td>
237
+ </tr>
238
+ </tbody>
239
+ </table>
240
+ </div>
241
+ </div>
242
+ </main>
243
+ </div>
244
+ </div>
245
+
246
+ <script>
247
+ AOS.init();
248
+ feather.replace();
249
+ </script>
250
+ </body>
251
+ </html>
history.html ADDED
@@ -0,0 +1,202 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <!DOCTYPE html>
2
+ <html lang="en">
3
+ <head>
4
+ <meta charset="UTF-8">
5
+ <meta name="viewport" content="width=device-width, initial-scale=1.0">
6
+ <title>Search History | MedCode AI</title>
7
+ <link rel="icon" type="image/x-icon" href="/static/favicon.ico">
8
+ <script src="https://cdn.tailwindcss.com"></script>
9
+ <link href="https://unpkg.com/aos@2.3.1/dist/aos.css" rel="stylesheet">
10
+ <script src="https://unpkg.com/aos@2.3.1/dist/aos.js"></script>
11
+ <script src="https://cdn.jsdelivr.net/npm/feather-icons/dist/feather.min.js"></script>
12
+ <script src="https://unpkg.com/feather-icons"></script>
13
+ </head>
14
+ <body class="bg-gray-50 font-sans">
15
+ <div class="flex h-screen overflow-hidden">
16
+ <!-- Sidebar (same as index.html) -->
17
+ <div class="sidebar bg-white shadow-lg w-64 flex flex-col">
18
+ <div class="p-4 flex items-center space-x-3 border-b">
19
+ <div class="bg-blue-500 p-2 rounded-lg">
20
+ <i data-feather="activity" class="text-white"></i>
21
+ </div>
22
+ <h1 class="logo-text text-xl font-bold text-gray-800">MedCode AI</h1>
23
+ </div>
24
+ <div class="flex-1 overflow-y-auto p-4 space-y-2">
25
+ <a href="index.html" class="nav-item flex items-center space-x-3 p-3 rounded-lg hover:bg-gray-100 text-gray-700">
26
+ <i data-feather="home" class="text-blue-600"></i>
27
+ <span class="nav-text">Dashboard</span>
28
+ </a>
29
+ <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">
30
+ <i data-feather="code" class="text-purple-600"></i>
31
+ <span class="nav-text">Code Converter</span>
32
+ </a>
33
+ <a href="patients.html" class="nav-item flex items-center space-x-3 p-3 rounded-lg hover:bg-gray-100 text-gray-700">
34
+ <i data-feather="users" class="text-pink-600"></i>
35
+ <span class="nav-text">Patient Records</span>
36
+ </a>
37
+ <a href="history.html" class="nav-item flex items-center space-x-3 p-3 rounded-lg bg-blue-50 text-blue-600">
38
+ <i data-feather="clock" class="text-yellow-600"></i>
39
+ <span class="nav-text font-medium">Search History</span>
40
+ </a>
41
+ <a href="resources.html" class="nav-item flex items-center space-x-3 p-3 rounded-lg hover:bg-gray-100 text-gray-700">
42
+ <i data-feather="book" class="text-green-600"></i>
43
+ <span class="nav-text">Coding Resources</span>
44
+ </a>
45
+ <a href="settings.html" class="nav-item flex items-center space-x-3 p-3 rounded-lg hover:bg-gray-100 text-gray-700">
46
+ <i data-feather="settings" class="text-gray-600"></i>
47
+ <span class="nav-text">Settings</span>
48
+ </a>
49
+ </div>
50
+ <div class="p-4 border-t">
51
+ <div class="flex items-center space-x-3">
52
+ <img src="http://static.photos/people/200x200/1" class="w-10 h-10 rounded-full" alt="User">
53
+ <div>
54
+ <p class="font-medium">Dr. Sarah Johnson</p>
55
+ <p class="text-sm text-gray-500">Cardiologist</p>
56
+ </div>
57
+ </div>
58
+ </div>
59
+ </div>
60
+
61
+ <!-- Main Content -->
62
+ <div class="flex-1 overflow-y-auto">
63
+ <!-- Header -->
64
+ <header class="bg-white shadow-sm p-4 flex justify-between items-center">
65
+ <h2 class="text-xl font-semibold text-gray-800">Search History</h2>
66
+ <div class="flex items-center space-x-4">
67
+ <div class="relative">
68
+ <input type="text" placeholder="Search history..." class="pl-10 pr-4 py-2 border rounded-lg focus:outline-none focus:ring-2 focus:ring-blue-500">
69
+ <i data-feather="search" class="absolute left-3 top-2.5 text-gray-400"></i>
70
+ </div>
71
+ <button class="p-2 rounded-full hover:bg-gray-100">
72
+ <i data-feather="filter" class="text-gray-600"></i>
73
+ </button>
74
+ </div>
75
+ </header>
76
+
77
+ <!-- History Content -->
78
+ <main class="p-6">
79
+ <div class="bg-white rounded-xl shadow-sm border border-gray-100 overflow-hidden">
80
+ <div class="grid grid-cols-12 bg-gray-50 p-4 border-b font-medium text-gray-600">
81
+ <div class="col-span-3">Date & Time</div>
82
+ <div class="col-span-3">Diagnosis</div>
83
+ <div class="col-span-2">ICD-10</div>
84
+ <div class="col-span-2">CPT</div>
85
+ <div class="col-span-2">Actions</div>
86
+ </div>
87
+
88
+ <!-- History Rows -->
89
+ <div class="divide-y divide-gray-200">
90
+ <!-- Entry 1 -->
91
+ <div class="grid grid-cols-12 p-4 hover:bg-gray-50 items-center">
92
+ <div class="col-span-3">
93
+ <p class="font-medium">Today, 10:30 AM</p>
94
+ <p class="text-sm text-gray-500">For: Michael Brown</p>
95
+ </div>
96
+ <div class="col-span-3">
97
+ <p class="font-medium">Atrial Fibrillation</p>
98
+ <p class="text-sm text-gray-500">Persistent irregular heartbeat</p>
99
+ </div>
100
+ <div class="col-span-2">
101
+ <span class="bg-blue-100 text-blue-800 px-2 py-1 rounded text-xs">I48.91</span>
102
+ </div>
103
+ <div class="col-span-2">
104
+ <span class="bg-purple-100 text-purple-800 px-2 py-1 rounded text-xs">99214</span>
105
+ </div>
106
+ <div class="col-span-2 flex space-x-2">
107
+ <button class="p-2 text-blue-600 hover:bg-blue-50 rounded-lg">
108
+ <i data-feather="copy" class="w-4 h-4"></i>
109
+ </button>
110
+ <button class="p-2 text-gray-600 hover:bg-gray-50 rounded-lg">
111
+ <i data-feather="trash-2" class="w-4 h-4"></i>
112
+ </button>
113
+ </div>
114
+ </div>
115
+
116
+ <!-- Entry 2 -->
117
+ <div class="grid grid-cols-12 p-4 hover:bg-gray-50 items-center">
118
+ <div class="col-span-3">
119
+ <p class="font-medium">Yesterday, 3:15 PM</p>
120
+ <p class="text-sm text-gray-500">For: Jennifer Lee</p>
121
+ </div>
122
+ <div class="col-span-3">
123
+ <p class="font-medium">Osteoarthritis, knee</p>
124
+ <p class="text-sm text-gray-500">Bilateral, with stiffness</p>
125
+ </div>
126
+ <div class="col-span-2">
127
+ <span class="bg-blue-100 text-blue-800 px-2 py-1 rounded text-xs">M17.9</span>
128
+ </div>
129
+ <div class="col-span-2">
130
+ <span class="bg-purple-100 text-purple-800 px-2 py-1 rounded text-xs">20610</span>
131
+ </div>
132
+ <div class="col-span-2 flex space-x-2">
133
+ <button class="p-2 text-blue-600 hover:bg-blue-50 rounded-lg">
134
+ <i data-feather="copy" class="w-4 h-4"></i>
135
+ </button>
136
+ <button class="p-2 text-gray-600 hover:bg-gray-50 rounded-lg">
137
+ <i data-feather="trash-2" class="w-4 h-4"></i>
138
+ </button>
139
+ </div>
140
+ </div>
141
+
142
+ <!-- Entry 3 -->
143
+ <div class="grid grid-cols-12 p-4 hover:bg-gray-50 items-center">
144
+ <div class="col-span-3">
145
+ <p class="font-medium">Yesterday, 10:00 AM</p>
146
+ <p class="text-sm text-gray-500">For: Robert Davis</p>
147
+ </div>
148
+ <div class="col-span-3">
149
+ <p class="font-medium">Hypertension</p>
150
+ <p class="text-sm text-gray-500">Stage 2, uncontrolled</p>
151
+ </div>
152
+ <div class="col-span-2">
153
+ <span class="bg-blue-100 text-blue-800 px-2 py-1 rounded text-xs">I10</span>
154
+ </div>
155
+ <div class="col-span-2">
156
+ <span class="bg-purple-100 text-purple-800 px-2 py-1 rounded text-xs">99213</span>
157
+ </div>
158
+ <div class="col-span-2 flex space-x-2">
159
+ <button class="p-2 text-blue-600 hover:bg-blue-50 rounded-lg">
160
+ <i data-feather="copy" class="w-4 h-4"></i>
161
+ </button>
162
+ <button class="p-2 text-gray-600 hover:bg-gray-50 rounded-lg">
163
+ <i data-feather="trash-2" class="w-4 h-4"></i>
164
+ </button>
165
+ </div>
166
+ </div>
167
+ </div>
168
+
169
+ <!-- Pagination -->
170
+ <div class="p-4 border-t flex justify-between items-center">
171
+ <div class="text-sm text-gray-600">
172
+ Showing 1 to 3 of 15 entries
173
+ </div>
174
+ <div class="flex space-x-2">
175
+ <button class="px-3 py-1 border rounded-lg text-gray-600 hover:bg-gray-50">
176
+ Previous
177
+ </button>
178
+ <button class="px-3 py-1 border rounded-lg bg-blue-600 text-white">
179
+ 1
180
+ </button>
181
+ <button class="px-3 py-1 border rounded-lg text-gray-600 hover:bg-gray-50">
182
+ 2
183
+ </button>
184
+ <button class="px-3 py-1 border rounded-lg text-gray-600 hover:bg-gray-50">
185
+ 3
186
+ </button>
187
+ <button class="px-3 py-1 border rounded-lg text-gray-600 hover:bg-gray-50">
188
+ Next
189
+ </button>
190
+ </div>
191
+ </div>
192
+ </div>
193
+ </main>
194
+ </div>
195
+ </div>
196
+
197
+ <script>
198
+ AOS.init();
199
+ feather.replace();
200
+ </script>
201
+ </body>
202
+ </html>
index.html CHANGED
@@ -1,19 +1,256 @@
1
- <!doctype html>
2
- <html>
3
- <head>
4
- <meta charset="utf-8" />
5
- <meta name="viewport" content="width=device-width" />
6
- <title>My static Space</title>
7
- <link rel="stylesheet" href="style.css" />
8
- </head>
9
- <body>
10
- <div class="card">
11
- <h1>Welcome to your static Space!</h1>
12
- <p>You can modify this app directly by editing <i>index.html</i> in the Files and versions tab.</p>
13
- <p>
14
- Also don't forget to check the
15
- <a href="https://huggingface.co/docs/hub/spaces" target="_blank">Spaces documentation</a>.
16
- </p>
17
- </div>
18
- </body>
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
19
  </html>
 
1
+ <!DOCTYPE html>
2
+ <html lang="en">
3
+ <head>
4
+ <meta charset="UTF-8">
5
+ <meta name="viewport" content="width=device-width, initial-scale=1.0">
6
+ <title>MedCode AI - Medical Coding Assistant</title>
7
+ <link rel="icon" type="image/x-icon" href="/static/favicon.ico">
8
+ <script src="https://cdn.tailwindcss.com"></script>
9
+ <link href="https://unpkg.com/aos@2.3.1/dist/aos.css" rel="stylesheet">
10
+ <script src="https://unpkg.com/aos@2.3.1/dist/aos.js"></script>
11
+ <script src="https://cdn.jsdelivr.net/npm/feather-icons/dist/feather.min.js"></script>
12
+ <script src="https://unpkg.com/feather-icons"></script>
13
+ <style>
14
+ .gradient-bg {
15
+ background: linear-gradient(135deg, #3b82f6 0%, #8b5cf6 50%, #ec4899 100%);
16
+ }
17
+ .sidebar {
18
+ transition: all 0.3s ease;
19
+ }
20
+ .sidebar.collapsed {
21
+ width: 80px;
22
+ }
23
+ .sidebar.collapsed .nav-text {
24
+ display: none;
25
+ }
26
+ .sidebar.collapsed .logo-text {
27
+ display: none;
28
+ }
29
+ .sidebar.collapsed .nav-item {
30
+ justify-content: center;
31
+ }
32
+ </style>
33
+ </head>
34
+ <body class="bg-gray-50 font-sans">
35
+ <div class="flex h-screen overflow-hidden">
36
+ <!-- Sidebar -->
37
+ <div class="sidebar bg-white shadow-lg w-64 flex flex-col">
38
+ <div class="p-4 flex items-center space-x-3 border-b">
39
+ <div class="bg-blue-500 p-2 rounded-lg">
40
+ <i data-feather="activity" class="text-white"></i>
41
+ </div>
42
+ <h1 class="logo-text text-xl font-bold text-gray-800">MedCode AI</h1>
43
+ </div>
44
+ <div class="flex-1 overflow-y-auto p-4 space-y-2">
45
+ <a href="index.html" class="nav-item flex items-center space-x-3 p-3 rounded-lg bg-blue-50 text-blue-600">
46
+ <i data-feather="home" class="text-blue-600"></i>
47
+ <span class="nav-text font-medium">Dashboard</span>
48
+ </a>
49
+ <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">
50
+ <i data-feather="code" class="text-purple-600"></i>
51
+ <span class="nav-text">Code Converter</span>
52
+ </a>
53
+ <a href="patients.html" class="nav-item flex items-center space-x-3 p-3 rounded-lg hover:bg-gray-100 text-gray-700">
54
+ <i data-feather="users" class="text-pink-600"></i>
55
+ <span class="nav-text">Patient Records</span>
56
+ </a>
57
+ <a href="history.html" class="nav-item flex items-center space-x-3 p-3 rounded-lg hover:bg-gray-100 text-gray-700">
58
+ <i data-feather="clock" class="text-yellow-600"></i>
59
+ <span class="nav-text">Search History</span>
60
+ </a>
61
+ <a href="resources.html" class="nav-item flex items-center space-x-3 p-3 rounded-lg hover:bg-gray-100 text-gray-700">
62
+ <i data-feather="book" class="text-green-600"></i>
63
+ <span class="nav-text">Coding Resources</span>
64
+ </a>
65
+ <a href="settings.html" class="nav-item flex items-center space-x-3 p-3 rounded-lg hover:bg-gray-100 text-gray-700">
66
+ <i data-feather="settings" class="text-gray-600"></i>
67
+ <span class="nav-text">Settings</span>
68
+ </a>
69
+ </div>
70
+ <div class="p-4 border-t">
71
+ <div class="flex items-center space-x-3">
72
+ <img src="http://static.photos/people/200x200/1" class="w-10 h-10 rounded-full" alt="User">
73
+ <div>
74
+ <p class="font-medium">Dr. Sarah Johnson</p>
75
+ <p class="text-sm text-gray-500">Cardiologist</p>
76
+ </div>
77
+ </div>
78
+ </div>
79
+ </div>
80
+
81
+ <!-- Main Content -->
82
+ <div class="flex-1 overflow-y-auto">
83
+ <!-- Header -->
84
+ <header class="bg-white shadow-sm p-4 flex justify-between items-center">
85
+ <h2 class="text-xl font-semibold text-gray-800">Dashboard</h2>
86
+ <div class="flex items-center space-x-4">
87
+ <div class="relative">
88
+ <input type="text" placeholder="Search..." class="pl-10 pr-4 py-2 border rounded-lg focus:outline-none focus:ring-2 focus:ring-blue-500">
89
+ <i data-feather="search" class="absolute left-3 top-2.5 text-gray-400"></i>
90
+ </div>
91
+ <button class="p-2 rounded-full hover:bg-gray-100">
92
+ <i data-feather="bell" class="text-gray-600"></i>
93
+ </button>
94
+ </div>
95
+ </header>
96
+
97
+ <!-- Dashboard Content -->
98
+ <main class="p-6">
99
+ <!-- Welcome Banner -->
100
+ <div class="gradient-bg rounded-xl p-6 text-white mb-6">
101
+ <div class="flex justify-between items-start">
102
+ <div>
103
+ <h1 class="text-2xl font-bold mb-2">Welcome back, Dr. Johnson</h1>
104
+ <p class="mb-4">Your AI-powered medical coding assistant is ready to help streamline your documentation workflow.</p>
105
+ <a href="code-converter.html" class="inline-flex items-center px-4 py-2 bg-white text-blue-600 rounded-lg font-medium hover:bg-opacity-90">
106
+ <i data-feather="plus" class="mr-2"></i> New Diagnosis Conversion
107
+ </a>
108
+ </div>
109
+ <img src="http://static.photos/medical/200x200/1" class="w-32 h-32 rounded-full border-4 border-white border-opacity-30" alt="Doctor">
110
+ </div>
111
+ </div>
112
+
113
+ <!-- Quick Actions -->
114
+ <div class="grid grid-cols-1 md:grid-cols-3 gap-6 mb-6">
115
+ <div class="bg-white p-6 rounded-xl shadow-sm border border-gray-100">
116
+ <div class="flex items-center justify-between mb-4">
117
+ <h3 class="font-semibold text-gray-800">Recent Patients</h3>
118
+ <a href="patients.html" class="text-sm text-blue-600 hover:underline">View All</a>
119
+ </div>
120
+ <div class="space-y-4">
121
+ <div class="flex items-center space-x-3">
122
+ <img src="http://static.photos/people/200x200/2" class="w-10 h-10 rounded-full" alt="Patient">
123
+ <div>
124
+ <p class="font-medium">Michael Brown</p>
125
+ <p class="text-sm text-gray-500">Last visit: 2 days ago</p>
126
+ </div>
127
+ </div>
128
+ <div class="flex items-center space-x-3">
129
+ <img src="http://static.photos/people/200x200/3" class="w-10 h-10 rounded-full" alt="Patient">
130
+ <div>
131
+ <p class="font-medium">Emily Wilson</p>
132
+ <p class="text-sm text-gray-500">Last visit: 1 week ago</p>
133
+ </div>
134
+ </div>
135
+ </div>
136
+ </div>
137
+
138
+ <div class="bg-white p-6 rounded-xl shadow-sm border border-gray-100">
139
+ <div class="flex items-center justify-between mb-4">
140
+ <h3 class="font-semibold text-gray-800">Recent Code Searches</h3>
141
+ <a href="history.html" class="text-sm text-blue-600 hover:underline">View All</a>
142
+ </div>
143
+ <div class="space-y-3">
144
+ <div>
145
+ <p class="font-medium">Hypertension</p>
146
+ <div class="flex space-x-2 mt-1">
147
+ <span class="bg-blue-100 text-blue-800 text-xs px-2 py-1 rounded">I10</span>
148
+ <span class="bg-purple-100 text-purple-800 text-xs px-2 py-1 rounded">99213</span>
149
+ </div>
150
+ </div>
151
+ <div>
152
+ <p class="font-medium">Type 2 Diabetes</p>
153
+ <div class="flex space-x-2 mt-1">
154
+ <span class="bg-blue-100 text-blue-800 text-xs px-2 py-1 rounded">E11.9</span>
155
+ <span class="bg-purple-100 text-purple-800 text-xs px-2 py-1 rounded">99214</span>
156
+ </div>
157
+ </div>
158
+ </div>
159
+ </div>
160
+
161
+ <div class="bg-white p-6 rounded-xl shadow-sm border border-gray-100">
162
+ <div class="flex items-center justify-between mb-4">
163
+ <h3 class="font-semibold text-gray-800">Coding Resources</h3>
164
+ <a href="resources.html" class="text-sm text-blue-600 hover:underline">View All</a>
165
+ </div>
166
+ <div class="space-y-3">
167
+ <a href="#" class="flex items-center space-x-3 p-2 hover:bg-gray-50 rounded-lg">
168
+ <div class="bg-green-100 p-2 rounded-lg">
169
+ <i data-feather="file-text" class="text-green-600"></i>
170
+ </div>
171
+ <span>2023 CPT Updates</span>
172
+ </a>
173
+ <a href="#" class="flex items-center space-x-3 p-2 hover:bg-gray-50 rounded-lg">
174
+ <div class="bg-yellow-100 p-2 rounded-lg">
175
+ <i data-feather="file-text" class="text-yellow-600"></i>
176
+ </div>
177
+ <span>ICD-10 Guidelines</span>
178
+ </a>
179
+ </div>
180
+ </div>
181
+ </div>
182
+
183
+ <!-- Recent Activity -->
184
+ <div class="bg-white p-6 rounded-xl shadow-sm border border-gray-100">
185
+ <h3 class="font-semibold text-gray-800 mb-4">Recent Activity</h3>
186
+ <div class="overflow-x-auto">
187
+ <table class="min-w-full divide-y divide-gray-200">
188
+ <thead class="bg-gray-50">
189
+ <tr>
190
+ <th class="px-6 py-3 text-left text-xs font-medium text-gray-500 uppercase tracking-wider">Date</th>
191
+ <th class="px-6 py-3 text-left text-xs font-medium text-gray-500 uppercase tracking-wider">Patient</th>
192
+ <th class="px-6 py-3 text-left text-xs font-medium text-gray-500 uppercase tracking-wider">Diagnosis</th>
193
+ <th class="px-6 py-3 text-left text-xs font-medium text-gray-500 uppercase tracking-wider">Codes</th>
194
+ <th class="px-6 py-3 text-left text-xs font-medium text-gray-500 uppercase tracking-wider">Status</th>
195
+ </tr>
196
+ </thead>
197
+ <tbody class="bg-white divide-y divide-gray-200">
198
+ <tr>
199
+ <td class="px-6 py-4 whitespace-nowrap text-sm text-gray-500">Today, 10:30 AM</td>
200
+ <td class="px-6 py-4 whitespace-nowrap">
201
+ <div class="flex items-center">
202
+ <img src="http://static.photos/people/200x200/4" class="w-8 h-8 rounded-full mr-2" alt="Patient">
203
+ <span>Robert Davis</span>
204
+ </div>
205
+ </td>
206
+ <td class="px-6 py-4 whitespace-nowrap text-sm font-medium text-gray-900">Atrial Fibrillation</td>
207
+ <td class="px-6 py-4 whitespace-nowrap">
208
+ <div class="flex space-x-1">
209
+ <span class="bg-blue-100 text-blue-800 text-xs px-2 py-1 rounded">I48.91</span>
210
+ <span class="bg-purple-100 text-purple-800 text-xs px-2 py-1 rounded">99214</span>
211
+ </div>
212
+ </td>
213
+ <td class="px-6 py-4 whitespace-nowrap">
214
+ <span class="px-2 py-1 text-xs rounded-full bg-green-100 text-green-800">Completed</span>
215
+ </td>
216
+ </tr>
217
+ <tr>
218
+ <td class="px-6 py-4 whitespace-nowrap text-sm text-gray-500">Yesterday, 3:15 PM</td>
219
+ <td class="px-6 py-4 whitespace-nowrap">
220
+ <div class="flex items-center">
221
+ <img src="http://static.photos/people/200x200/5" class="w-8 h-8 rounded-full mr-2" alt="Patient">
222
+ <span>Jennifer Lee</span>
223
+ </div>
224
+ </td>
225
+ <td class="px-6 py-4 whitespace-nowrap text-sm font-medium text-gray-900">Osteoarthritis, knee</td>
226
+ <td class="px-6 py-4 whitespace-nowrap">
227
+ <div class="flex space-x-1">
228
+ <span class="bg-blue-100 text-blue-800 text-xs px-2 py-1 rounded">M17.9</span>
229
+ <span class="bg-purple-100 text-purple-800 text-xs px-2 py-1 rounded">20610</span>
230
+ </div>
231
+ </td>
232
+ <td class="px-6 py-4 whitespace-nowrap">
233
+ <span class="px-2 py-1 text-xs rounded-full bg-green-100 text-green-800">Completed</span>
234
+ </td>
235
+ </tr>
236
+ </tbody>
237
+ </table>
238
+ </div>
239
+ </div>
240
+ </main>
241
+ </div>
242
+ </div>
243
+
244
+ <script>
245
+ AOS.init();
246
+ feather.replace();
247
+
248
+ // Toggle sidebar collapse
249
+ document.addEventListener('keydown', function(e) {
250
+ if (e.key === 'b' && e.ctrlKey) {
251
+ document.querySelector('.sidebar').classList.toggle('collapsed');
252
+ }
253
+ });
254
+ </script>
255
+ </body>
256
  </html>
patients.html ADDED
@@ -0,0 +1,197 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <!DOCTYPE html>
2
+ <html lang="en">
3
+ <head>
4
+ <meta charset="UTF-8">
5
+ <meta name="viewport" content="width=device-width, initial-scale=1.0">
6
+ <title>Patient Records | MedCode AI</title>
7
+ <link rel="icon" type="image/x-icon" href="/static/favicon.ico">
8
+ <script src="https://cdn.tailwindcss.com"></script>
9
+ <link href="https://unpkg.com/aos@2.3.1/dist/aos.css" rel="stylesheet">
10
+ <script src="https://unpkg.com/aos@2.3.1/dist/aos.js"></script>
11
+ <script src="https://cdn.jsdelivr.net/npm/feather-icons/dist/feather.min.js"></script>
12
+ <script src="https://unpkg.com/feather-icons"></script>
13
+ </head>
14
+ <body class="bg-gray-50 font-sans">
15
+ <div class="flex h-screen overflow-hidden">
16
+ <!-- Sidebar (same as index.html) -->
17
+ <div class="sidebar bg-white shadow-lg w-64 flex flex-col">
18
+ <div class="p-4 flex items-center space-x-3 border-b">
19
+ <div class="bg-blue-500 p-2 rounded-lg">
20
+ <i data-feather="activity" class="text-white"></i>
21
+ </div>
22
+ <h1 class="logo-text text-xl font-bold text-gray-800">MedCode AI</h1>
23
+ </div>
24
+ <div class="flex-1 overflow-y-auto p-4 space-y-2">
25
+ <a href="index.html" class="nav-item flex items-center space-x-3 p-3 rounded-lg hover:bg-gray-100 text-gray-700">
26
+ <i data-feather="home" class="text-blue-600"></i>
27
+ <span class="nav-text">Dashboard</span>
28
+ </a>
29
+ <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">
30
+ <i data-feather="code" class="text-purple-600"></i>
31
+ <span class="nav-text">Code Converter</span>
32
+ </a>
33
+ <a href="patients.html" class="nav-item flex items-center space-x-3 p-3 rounded-lg bg-blue-50 text-blue-600">
34
+ <i data-feather="users" class="text-pink-600"></i>
35
+ <span class="nav-text font-medium">Patient Records</span>
36
+ </a>
37
+ <a href="history.html" class="nav-item flex items-center space-x-3 p-3 rounded-lg hover:bg-gray-100 text-gray-700">
38
+ <i data-feather="clock" class="text-yellow-600"></i>
39
+ <span class="nav-text">Search History</span>
40
+ </a>
41
+ <a href="resources.html" class="nav-item flex items-center space-x-3 p-3 rounded-lg hover:bg-gray-100 text-gray-700">
42
+ <i data-feather="book" class="text-green-600"></i>
43
+ <span class="nav-text">Coding Resources</span>
44
+ </a>
45
+ <a href="settings.html" class="nav-item flex items-center space-x-3 p-3 rounded-lg hover:bg-gray-100 text-gray-700">
46
+ <i data-feather="settings" class="text-gray-600"></i>
47
+ <span class="nav-text">Settings</span>
48
+ </a>
49
+ </div>
50
+ <div class="p-4 border-t">
51
+ <div class="flex items-center space-x-3">
52
+ <img src="http://static.photos/people/200x200/1" class="w-10 h-10 rounded-full" alt="User">
53
+ <div>
54
+ <p class="font-medium">Dr. Sarah Johnson</p>
55
+ <p class="text-sm text-gray-500">Cardiologist</p>
56
+ </div>
57
+ </div>
58
+ </div>
59
+ </div>
60
+
61
+ <!-- Main Content -->
62
+ <div class="flex-1 overflow-y-auto">
63
+ <!-- Header -->
64
+ <header class="bg-white shadow-sm p-4 flex justify-between items-center">
65
+ <h2 class="text-xl font-semibold text-gray-800">Patient Records</h2>
66
+ <div class="flex items-center space-x-4">
67
+ <div class="relative">
68
+ <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">
69
+ <i data-feather="search" class="absolute left-3 top-2.5 text-gray-400"></i>
70
+ </div>
71
+ <button class="bg-blue-600 text-white px-4 py-2 rounded-lg hover:bg-blue-700 flex items-center">
72
+ <i data-feather="plus" class="mr-2"></i> New Patient
73
+ </button>
74
+ </div>
75
+ </header>
76
+
77
+ <!-- Patient Content -->
78
+ <main class="p-6">
79
+ <!-- Patient List -->
80
+ <div class="bg-white rounded-xl shadow-sm border border-gray-100 overflow-hidden">
81
+ <div class="grid grid-cols-12 bg-gray-50 p-4 border-b font-medium text-gray-600">
82
+ <div class="col-span-4">Patient</div>
83
+ <div class="col-span-2">DOB</div>
84
+ <div class="col-span-2">Last Visit</div>
85
+ <div class="col-span-2">Status</div>
86
+ <div class="col-span-2">Actions</div>
87
+ </div>
88
+
89
+ <!-- Patient Rows -->
90
+ <div class="divide-y divide-gray-200">
91
+ <!-- Patient 1 -->
92
+ <div class="grid grid-cols-12 p-4 hover:bg-gray-50 items-center">
93
+ <div class="col-span-4 flex items-center space-x-3">
94
+ <img src="http://static.photos/people/200x200/2" class="w-10 h-10 rounded-full" alt="Patient">
95
+ <div>
96
+ <p class="font-medium">Michael Brown</p>
97
+ <p class="text-sm text-gray-500">ID: MB123456</p>
98
+ </div>
99
+ </div>
100
+ <div class="col-span-2 text-sm text-gray-600">05/12/1978</div>
101
+ <div class="col-span-2 text-sm text-gray-600">Today, 10:30 AM</div>
102
+ <div class="col-span-2">
103
+ <span class="px-2 py-1 text-xs rounded-full bg-green-100 text-green-800">Active</span>
104
+ </div>
105
+ <div class="col-span-2 flex space-x-2">
106
+ <button class="p-2 text-blue-600 hover:bg-blue-50 rounded-lg">
107
+ <i data-feather="eye" class="w-4 h-4"></i>
108
+ </button>
109
+ <button class="p-2 text-gray-600 hover:bg-gray-50 rounded-lg">
110
+ <i data-feather="edit" class="w-4 h-4"></i>
111
+ </button>
112
+ </div>
113
+ </div>
114
+
115
+ <!-- Patient 2 -->
116
+ <div class="grid grid-cols-12 p-4 hover:bg-gray-50 items-center">
117
+ <div class="col-span-4 flex items-center space-x-3">
118
+ <img src="http://static.photos/people/200x200/3" class="w-10 h-10 rounded-full" alt="Patient">
119
+ <div>
120
+ <p class="font-medium">Emily Wilson</p>
121
+ <p class="text-sm text-gray-500">ID: EW789012</p>
122
+ </div>
123
+ </div>
124
+ <div class="col-span-2 text-sm text-gray-600">08/23/1985</div>
125
+ <div class="col-span-2 text-sm text-gray-600">2 days ago</div>
126
+ <div class="col-span-2">
127
+ <span class="px-2 py-1 text-xs rounded-full bg-green-100 text-green-800">Active</span>
128
+ </div>
129
+ <div class="col-span-2 flex space-x-2">
130
+ <button class="p-2 text-blue-600 hover:bg-blue-50 rounded-lg">
131
+ <i data-feather="eye" class="w-4 h-4"></i>
132
+ </button>
133
+ <button class="p-2 text-gray-600 hover:bg-gray-50 rounded-lg">
134
+ <i data-feather="edit" class="w-4 h-4"></i>
135
+ </button>
136
+ </div>
137
+ </div>
138
+
139
+ <!-- Patient 3 -->
140
+ <div class="grid grid-cols-12 p-4 hover:bg-gray-50 items-center">
141
+ <div class="col-span-4 flex items-center space-x-3">
142
+ <img src="http://static.photos/people/200x200/4" class="w-10 h-10 rounded-full" alt="Patient">
143
+ <div>
144
+ <p class="font-medium">Robert Davis</p>
145
+ <p class="text-sm text-gray-500">ID: RD345678</p>
146
+ </div>
147
+ </div>
148
+ <div class="col-span-2 text-sm text-gray-600">11/05/1965</div>
149
+ <div class="col-span-2 text-sm text-gray-600">1 week ago</div>
150
+ <div class="col-span-2">
151
+ <span class="px-2 py-1 text-xs rounded-full bg-yellow-100 text-yellow-800">Follow-up</span>
152
+ </div>
153
+ <div class="col-span-2 flex space-x-2">
154
+ <button class="p-2 text-blue-600 hover:bg-blue-50 rounded-lg">
155
+ <i data-feather="eye" class="w-4 h-4"></i>
156
+ </button>
157
+ <button class="p-2 text-gray-600 hover:bg-gray-50 rounded-lg">
158
+ <i data-feather="edit" class="w-4 h-4"></i>
159
+ </button>
160
+ </div>
161
+ </div>
162
+ </div>
163
+
164
+ <!-- Pagination -->
165
+ <div class="p-4 border-t flex justify-between items-center">
166
+ <div class="text-sm text-gray-600">
167
+ Showing 1 to 3 of 12 patients
168
+ </div>
169
+ <div class="flex space-x-2">
170
+ <button class="px-3 py-1 border rounded-lg text-gray-600 hover:bg-gray-50">
171
+ Previous
172
+ </button>
173
+ <button class="px-3 py-1 border rounded-lg bg-blue-600 text-white">
174
+ 1
175
+ </button>
176
+ <button class="px-3 py-1 border rounded-lg text-gray-600 hover:bg-gray-50">
177
+ 2
178
+ </button>
179
+ <button class="px-3 py-1 border rounded-lg text-gray-600 hover:bg-gray-50">
180
+ 3
181
+ </button>
182
+ <button class="px-3 py-1 border rounded-lg text-gray-600 hover:bg-gray-50">
183
+ Next
184
+ </button>
185
+ </div>
186
+ </div>
187
+ </div>
188
+ </main>
189
+ </div>
190
+ </div>
191
+
192
+ <script>
193
+ AOS.init();
194
+ feather.replace();
195
+ </script>
196
+ </body>
197
+ </html>
prompts.txt ADDED
@@ -0,0 +1 @@
 
 
1
+ Build an AI tool that converts doctors’ diagnoses into CPT, HCPCS, and ICD-10 codes. Include useful features for physicians such as a section to input and manage patient information, a dashboard to track recent searches, and any additional tools that would streamline coding and documentation. Ensure every button is fully functional. Each button should link to its own page, and that page should display the content or features described by the button.
resources.html ADDED
@@ -0,0 +1,232 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <!DOCTYPE html>
2
+ <html lang="en">
3
+ <head>
4
+ <meta charset="UTF-8">
5
+ <meta name="viewport" content="width=device-width, initial-scale=1.0">
6
+ <title>Coding Resources | MedCode AI</title>
7
+ <link rel="icon" type="image/x-icon" href="/static/favicon.ico">
8
+ <script src="https://cdn.tailwindcss.com"></script>
9
+ <link href="https://unpkg.com/aos@2.3.1/dist/aos.css" rel="stylesheet">
10
+ <script src="https://unpkg.com/aos@2.3.1/dist/aos.js"></script>
11
+ <script src="https://cdn.jsdelivr.net/npm/feather-icons/dist/feather.min.js"></script>
12
+ <script src="https://unpkg.com/feather-icons"></script>
13
+ </head>
14
+ <body class="bg-gray-50 font-sans">
15
+ <div class="flex h-screen overflow-hidden">
16
+ <!-- Sidebar (same as index.html) -->
17
+ <div class="sidebar bg-white shadow-lg w-64 flex flex-col">
18
+ <div class="p-4 flex items-center space-x-3 border-b">
19
+ <div class="bg-blue-500 p-2 rounded-lg">
20
+ <i data-feather="activity" class="text-white"></i>
21
+ </div>
22
+ <h1 class="logo-text text-xl font-bold text-gray-800">MedCode AI</h1>
23
+ </div>
24
+ <div class="flex-1 overflow-y-auto p-4 space-y-2">
25
+ <a href="index.html" class="nav-item flex items-center space-x-3 p-3 rounded-lg hover:bg-gray-100 text-gray-700">
26
+ <i data-feather="home" class="text-blue-600"></i>
27
+ <span class="nav-text">Dashboard</span>
28
+ </a>
29
+ <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">
30
+ <i data-feather="code" class="text-purple-600"></i>
31
+ <span class="nav-text">Code Converter</span>
32
+ </a>
33
+ <a href="patients.html" class="nav-item flex items-center space-x-3 p-3 rounded-lg hover:bg-gray-100 text-gray-700">
34
+ <i data-feather="users" class="text-pink-600"></i>
35
+ <span class="nav-text">Patient Records</span>
36
+ </a>
37
+ <a href="history.html" class="nav-item flex items-center space-x-3 p-3 rounded-lg hover:bg-gray-100 text-gray-700">
38
+ <i data-feather="clock" class="text-yellow-600"></i>
39
+ <span class="nav-text">Search History</span>
40
+ </a>
41
+ <a href="resources.html" class="nav-item flex items-center space-x-3 p-3 rounded-lg bg-blue-50 text-blue-600">
42
+ <i data-feather="book" class="text-green-600"></i>
43
+ <span class="nav-text font-medium">Coding Resources</span>
44
+ </a>
45
+ <a href="settings.html" class="nav-item flex items-center space-x-3 p-3 rounded-lg hover:bg-gray-100 text-gray-700">
46
+ <i data-feather="settings" class="text-gray-600"></i>
47
+ <span class="nav-text">Settings</span>
48
+ </a>
49
+ </div>
50
+ <div class="p-4 border-t">
51
+ <div class="flex items-center space-x-3">
52
+ <img src="http://static.photos/people/200x200/1" class="w-10 h-10 rounded-full" alt="User">
53
+ <div>
54
+ <p class="font-medium">Dr. Sarah Johnson</p>
55
+ <p class="text-sm text-gray-500">Cardiologist</p>
56
+ </div>
57
+ </div>
58
+ </div>
59
+ </div>
60
+
61
+ <!-- Main Content -->
62
+ <div class="flex-1 overflow-y-auto">
63
+ <!-- Header -->
64
+ <header class="bg-white shadow-sm p-4 flex justify-between items-center">
65
+ <h2 class="text-xl font-semibold text-gray-800">Coding Resources</h2>
66
+ <div class="flex items-center space-x-4">
67
+ <div class="relative">
68
+ <input type="text" placeholder="Search resources..." class="pl-10 pr-4 py-2 border rounded-lg focus:outline-none focus:ring-2 focus:ring-blue-500">
69
+ <i data-feather="search" class="absolute left-3 top-2.5 text-gray-400"></i>
70
+ </div>
71
+ <button class="p-2 rounded-full hover:bg-gray-100">
72
+ <i data-feather="filter" class="text-gray-600"></i>
73
+ </button>
74
+ </div>
75
+ </header>
76
+
77
+ <!-- Resources Content -->
78
+ <main class="p-6">
79
+ <div class="grid grid-cols-1 md:grid-cols-2 lg:grid-cols-3 gap-6">
80
+ <!-- Resource Card 1 -->
81
+ <div class="bg-white rounded-xl shadow-sm border border-gray-100 overflow-hidden">
82
+ <div class="bg-blue-600 p-4 text-white">
83
+ <div class="flex items-center justify-between">
84
+ <h3 class="font-semibold">ICD-10 Code Lookup</h3>
85
+ <i data-feather="search" class="w-6 h-6"></i>
86
+ </div>
87
+ </div>
88
+ <div class="p-4">
89
+ <p class="text-gray-600 mb-4">Search the complete ICD-10-CM code set with our intuitive lookup tool.</p>
90
+ <button class="w-full bg-blue-50 text-blue-600 py-2 rounded-lg hover:bg-blue-100">
91
+ Open Tool
92
+ </button>
93
+ </div>
94
+ </div>
95
+
96
+ <!-- Resource Card 2 -->
97
+ <div class="bg-white rounded-xl shadow-sm border border-gray-100 overflow-hidden">
98
+ <div class="bg-purple-600 p-4 text-white">
99
+ <div class="flex items-center justify-between">
100
+ <h3 class="font-semibold">CPT Code Finder</h3>
101
+ <i data-feather="file-text" class="w-6 h-6"></i>
102
+ </div>
103
+ </div>
104
+ <div class="p-4">
105
+ <p class="text-gray-600 mb-4">Find the right CPT codes for procedures with detailed descriptions.</p>
106
+ <button class="w-full bg-purple-50 text-purple-600 py-2 rounded-lg hover:bg-purple-100">
107
+ Open Tool
108
+ </button>
109
+ </div>
110
+ </div>
111
+
112
+ <!-- Resource Card 3 -->
113
+ <div class="bg-white rounded-xl shadow-sm border border-gray-100 overflow-hidden">
114
+ <div class="bg-green-600 p-4 text-white">
115
+ <div class="flex items-center justify-between">
116
+ <h3 class="font-semibold">HCPCS Code Reference</h3>
117
+ <i data-feather="layers" class="w-6 h-6"></i>
118
+ </div>
119
+ </div>
120
+ <div class="p-4">
121
+ <p class="text-gray-600 mb-4">Access the complete HCPCS Level II code set for supplies and services.</p>
122
+ <button class="w-full bg-green-50 text-green-600 py-2 rounded-lg hover:bg-green-100">
123
+ Open Tool
124
+ </button>
125
+ </div>
126
+ </div>
127
+
128
+ <!-- Resource Card 4 -->
129
+ <div class="bg-white rounded-xl shadow-sm border border-gray-100 overflow-hidden">
130
+ <div class="bg-yellow-600 p-4 text-white">
131
+ <div class="flex items-center justify-between">
132
+ <h3 class="font-semibold">2023 Coding Updates</h3>
133
+ <i data-feather="alert-circle" class="w-6 h-6"></i>
134
+ </div>
135
+ </div>
136
+ <div class="p-4">
137
+ <p class="text-gray-600 mb-4">Review the latest changes to ICD-10, CPT, and HCPCS codes for 2023.</p>
138
+ <button class="w-full bg-yellow-50 text-yellow-600 py-2 rounded-lg hover:bg-yellow-100">
139
+ View Guide
140
+ </button>
141
+ </div>
142
+ </div>
143
+
144
+ <!-- Resource Card 5 -->
145
+ <div class="bg-white rounded-xl shadow-sm border border-gray-100 overflow-hidden">
146
+ <div class="bg-red-600 p-4 text-white">
147
+ <div class="flex items-center justify-between">
148
+ <h3 class="font-semibold">Documentation Guidelines</h3>
149
+ <i data-feather="clipboard" class="w-6 h-6"></i>
150
+ </div>
151
+ </div>
152
+ <div class="p-4">
153
+ <p class="text-gray-600 mb-4">Best practices for medical documentation to support your coding.</p>
154
+ <button class="w-full bg-red-50 text-red-600 py-2 rounded-lg hover:bg-red-100">
155
+ Read More
156
+ </button>
157
+ </div>
158
+ </div>
159
+
160
+ <!-- Resource Card 6 -->
161
+ <div class="bg-white rounded-xl shadow-sm border border-gray-100 overflow-hidden">
162
+ <div class="bg-indigo-600 p-4 text-white">
163
+ <div class="flex items-center justify-between">
164
+ <h3 class="font-semibold">Coding Webinars</h3>
165
+ <i data-feather="video" class="w-6 h-6"></i>
166
+ </div>
167
+ </div>
168
+ <div class="p-4">
169
+ <p class="text-gray-600 mb-4">Access our library of on-demand coding education webinars.</p>
170
+ <button class="w-full bg-indigo-50 text-indigo-600 py-2 rounded-lg hover:bg-indigo-100">
171
+ Browse Videos
172
+ </button>
173
+ </div>
174
+ </div>
175
+ </div>
176
+
177
+ <!-- Documentation Section -->
178
+ <div class="mt-8 bg-white rounded-xl shadow-sm border border-gray-100 p-6">
179
+ <h3 class="text-lg font-semibold text-gray-800 mb-4">Official Documentation</h3>
180
+
181
+ <div class="grid grid-cols-1 md:grid-cols-2 gap-4">
182
+ <a href="#" class="p-4 border rounded-lg hover:bg-gray-50 flex items-center">
183
+ <div class="bg-blue-100 p-3 rounded-lg mr-4">
184
+ <i data-feather="book" class="text-blue-600"></i>
185
+ </div>
186
+ <div>
187
+ <p class="font-medium">ICD-10-CM Official Guidelines</p>
188
+ <p class="text-sm text-gray-500">2023 Edition</p>
189
+ </div>
190
+ </a>
191
+
192
+ <a href="#" class="p-4 border rounded-lg hover:bg-gray-50 flex items-center">
193
+ <div class="bg-purple-100 p-3 rounded-lg mr-4">
194
+ <i data-feather="book" class="text-purple-600"></i>
195
+ </div>
196
+ <div>
197
+ <p class="font-medium">CPT® Professional Edition</p>
198
+ <p class="text-sm text-gray-500">2023 AMA</p>
199
+ </div>
200
+ </a>
201
+
202
+ <a href="#" class="p-4 border rounded-lg hover:bg-gray-50 flex items-center">
203
+ <div class="bg-green-100 p-3 rounded-lg mr-4">
204
+ <i data-feather="book" class="text-green-600"></i>
205
+ </div>
206
+ <div>
207
+ <p class="font-medium">HCPCS Level II Reference</p>
208
+ <p class="text-sm text-gray-500">2023 CMS</p>
209
+ </div>
210
+ </a>
211
+
212
+ <a href="#" class="p-4 border rounded-lg hover:bg-gray-50 flex items-center">
213
+ <div class="bg-yellow-100 p-3 rounded-lg mr-4">
214
+ <i data-feather="book" class="text-yellow-600"></i>
215
+ </div>
216
+ <div>
217
+ <p class="font-medium">Medicare Billing Guidelines</p>
218
+ <p class="text-sm text-gray-500">2023 CMS</p>
219
+ </div>
220
+ </a>
221
+ </div>
222
+ </div>
223
+ </main>
224
+ </div>
225
+ </div>
226
+
227
+ <script>
228
+ AOS.init();
229
+ feather.replace();
230
+ </script>
231
+ </body>
232
+ </html>
settings.html ADDED
@@ -0,0 +1,115 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <!DOCTYPE html>
2
+ <html lang="en">
3
+ <head>
4
+ <meta charset="UTF-8">
5
+ <meta name="viewport" content="width=device-width, initial-scale=1.0">
6
+ <title>Settings | MedCode AI</title>
7
+ <link rel="icon" type="image/x-icon" href="/static/favicon.ico">
8
+ <script src="https://cdn.tailwindcss.com"></script>
9
+ <link href="https://unpkg.com/aos@2.3.1/dist/aos.css" rel="stylesheet">
10
+ <script src="https://unpkg.com/aos@2.3.1/dist/aos.js"></script>
11
+ <script src="https://cdn.jsdelivr.net/npm/feather-icons/dist/feather.min.js"></script>
12
+ <script src="https://unpkg.com/feather-icons"></script>
13
+ </head>
14
+ <body class="bg-gray-50 font-sans">
15
+ <div class="flex h-screen overflow-hidden">
16
+ <!-- Sidebar (same as index.html) -->
17
+ <div class="sidebar bg-white shadow-lg w-64 flex flex-col">
18
+ <div class="p-4 flex items-center space-x-3 border-b">
19
+ <div class="bg-blue-500 p-2 rounded-lg">
20
+ <i data-feather="activity" class="text-white"></i>
21
+ </div>
22
+ <h1 class="logo-text text-xl font-bold text-gray-800">MedCode AI</h1>
23
+ </div>
24
+ <div class="flex-1 overflow-y-auto p-4 space-y-2">
25
+ <a href="index.html" class="nav-item flex items-center space-x-3 p-3 rounded-lg hover:bg-gray-100 text-gray-700">
26
+ <i data-feather="home" class="text-blue-600"></i>
27
+ <span class="nav-text">Dashboard</span>
28
+ </a>
29
+ <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">
30
+ <i data-feather="code" class="text-purple-600"></i>
31
+ <span class="nav-text">Code Converter</span>
32
+ </a>
33
+ <a href="patients.html" class="nav-item flex items-center space-x-3 p-3 rounded-lg hover:bg-gray-100 text-gray-700">
34
+ <i data-feather="users" class="text-pink-600"></i>
35
+ <span class="nav-text">Patient Records</span>
36
+ </a>
37
+ <a href="history.html" class="nav-item flex items-center space-x-3 p-3 rounded-lg hover:bg-gray-100 text-gray-700">
38
+ <i data-feather="clock" class="text-yellow-600"></i>
39
+ <span class="nav-text">Search History</span>
40
+ </a>
41
+ <a href="resources.html" class="nav-item flex items-center space-x-3 p-3 rounded-lg hover:bg-gray-100 text-gray-700">
42
+ <i data-feather="book" class="text-green-600"></i>
43
+ <span class="nav-text">Coding Resources</span>
44
+ </a>
45
+ <a href="settings.html" class="nav-item flex items-center space-x-3 p-3 rounded-lg bg-blue-50 text-blue-600">
46
+ <i data-feather="settings" class="text-gray-600"></i>
47
+ <span class="nav-text font-medium">Settings</span>
48
+ </a>
49
+ </div>
50
+ <div class="p-4 border-t">
51
+ <div class="flex items-center space-x-3">
52
+ <img src="http://static.photos/people/200x200/1" class="w-10 h-10 rounded-full" alt="User">
53
+ <div>
54
+ <p class="font-medium">Dr. Sarah Johnson</p>
55
+ <p class="text-sm text-gray-500">Cardiologist</p>
56
+ </div>
57
+ </div>
58
+ </div>
59
+ </div>
60
+
61
+ <!-- Main Content -->
62
+ <div class="flex-1 overflow-y-auto">
63
+ <!-- Header -->
64
+ <header class="bg-white shadow-sm p-4 flex justify-between items-center">
65
+ <h2 class="text-xl font-semibold text-gray-800">Settings</h2>
66
+ <div class="flex items-center space-x-4">
67
+ <button class="p-2 rounded-full hover:bg-gray-100">
68
+ <i data-feather="help-circle" class="text-gray-600"></i>
69
+ </button>
70
+ </div>
71
+ </header>
72
+
73
+ <!-- Settings Content -->
74
+ <main class="p-6">
75
+ <div class="grid grid-cols-1 lg:grid-cols-3 gap-6">
76
+ <!-- Account Settings -->
77
+ <div class="lg:col-span-2 bg-white rounded-xl shadow-sm border border-gray-100 p-6">
78
+ <h3 class="text-lg font-semibold text-gray-800 mb-6">Account Settings</h3>
79
+
80
+ <div class="space-y-6">
81
+ <!-- Profile Section -->
82
+ <div>
83
+ <h4 class="font-medium text-gray-700 mb-3">Profile</h4>
84
+ <div class="flex items-center space-x-4 mb-4">
85
+ <img src="http://static.photos/people/200x200/1" class="w-16 h-16 rounded-full" alt="User">
86
+ <div>
87
+ <button class="text-sm text-blue-600 hover:text-blue-800">Change Photo</button>
88
+ <p class="text-xs text-gray-500 mt-1">JPG, GIF or PNG. Max size of 2MB</p>
89
+ </div>
90
+ </div>
91
+
92
+ <div class="grid grid-cols-1 md:grid-cols-2 gap-4">
93
+ <div>
94
+ <label class="block text-sm font-medium text-gray-700 mb-1">First Name</label>
95
+ <input type="text" value="Sarah" class="w-full border rounded-lg p-2 focus:ring-2 focus:ring-blue-500 focus:outline-none">
96
+ </div>
97
+ <div>
98
+ <label class="block text-sm font-medium text-gray-700 mb-1">Last Name</label>
99
+ <input type="text" value="Johnson" class="w-full border rounded-lg p-2 focus:ring-2 focus:ring-blue-500 focus:outline-none">
100
+ </div>
101
+ <div>
102
+ <label class="block text-sm font-medium text-gray-700 mb-1">Email</label>
103
+ <input type="email" value="s.johnson@example.com" class="w-full border rounded-lg p-2 focus:ring-2 focus:ring-blue-500 focus:outline-none">
104
+ </div>
105
+ <div>
106
+ <label class="block text-sm font-medium text-gray-700 mb-1">Specialty</label>
107
+ <select class="w-full border rounded-lg p-2 focus:ring-2 focus:ring-blue-500 focus:outline-none">
108
+ <option>Cardiology</option>
109
+ <option>Family Medicine</option>
110
+ <option>Internal Medicine</option>
111
+ <option>Pediatrics</option>
112
+ </select>
113
+ </
114
+ </body>
115
+ </html>