-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdoctor.html
More file actions
30 lines (24 loc) · 755 Bytes
/
doctor.html
File metadata and controls
30 lines (24 loc) · 755 Bytes
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
<!DOCTYPE html>
<html>
<head>
<title>Doctor Dashboard</title>
<link rel="stylesheet" href="style.css">
</head>
<body>
<h1>Doctor Dashboard</h1>
<h3>Patient Details</h3>
<p id="patientInfo"></p>
<h3>Vitals</h3>
<p id="vitalsInfo"></p>
<h3>⚠️ Risk Alerts</h3>
<p id="riskAlerts"></p>
<h3>Clinical Actions</h3>
<button type="button" id="editVitals">Edit Vitals</button>
<button type="button" id="voiceRx">Voice Prescription</button>
<button type="button" id="summary">Generate Summary</button>
<button type="button" id="educationBtn">Patient Education</button>
<button type="button" id="supportBtn">Patient Support</button>
<button type="button" id="wellnessBtn">Wellness Tracking</button>
<script src="script.js"></script>
</body>
</html>