-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
194 lines (174 loc) · 5.58 KB
/
index.html
File metadata and controls
194 lines (174 loc) · 5.58 KB
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Smart Pillbox Dashboard</title>
<link rel="stylesheet" href="styles.css" />
</head>
<body>
<!-- Header with Auth Buttons -->
<header class="video-header">
<video autoplay muted loop playsinline class="background-video">
<source
src="Untitled video - Made with Clipchamp.mp4"
type="video/mp4"
/>
Your browser does not support the video tag.
</video>
<div class="header-content">
<h1>Smart Medication Adherence System</h1>
<div class="auth-buttons">
<a href="#signin">Sign In</a>
<a href="#signup">Sign Up</a>
</div>
</div>
</header>
<!-- Nav Bar -->
<nav class="navbar">
<a href="#dashboard" , >Dashboard</a>
<a href="#medications">Medications</a>
<a href="#reports">Reports</a>
<a href="#settings">Settings</a>
<a href="#about">About</a>
<a href="#doctors">Doctors</a>
</nav>
<!-- Dashboard Section -->
<div class="container" id="dashboard">
<div class="card">
<h2>Today's Medication Schedule</h2>
<p>8:00 AM - Metformin ✔️</p>
<p>12:00 PM - Aspirin ❌ (Missed)</p>
<p>6:00 PM - Lisinopril ⏳ (Upcoming)</p>
</div>
<div class="card">
<h2>Device Status</h2>
<p>Last Sync: 5 mins ago</p>
<p>Battery: 80%</p>
</div>
</div>
<!-- Medications Section -->
<div class="container" id="medications">
<div class="card">
<h2>Add Medication</h2>
<form>
<label>Medication Name:</label>
<input type="text" placeholder="e.g., Metformin" />
<label>Time:</label>
<input type="time" />
<label>Dosage:</label>
<input type="text" placeholder="e.g., 500mg" />
<button type="submit" class="btn">Add</button>
</form>
</div>
</div>
<!-- Quick Access Section -->
<div class="container quick-access">
<div class="quick-card">
<img
src="https://img.icons8.com/ios-filled/50/4caf50/doctor-male.png"
alt="Appointment"
/>
<h3>Book an Appointment</h3>
<p>With country's leading experts</p>
</div>
<div class="quick-card">
<img
src="https://img.icons8.com/ios-filled/50/4caf50/hospital.png"
alt="Hospital"
/>
<h3>Hospitals</h3>
<p>Health needs under one roof</p>
</div>
<div class="quick-card">
<img
src="https://img.icons8.com/ios-filled/50/4caf50/stethoscope.png"
alt="Specialities"
/>
<h3>Specialities</h3>
<p>Our expertise in Healthcare</p>
</div>
<div class="quick-card">
<img
src="https://cdn.iconscout.com/icon/premium/png-256-thumb/health-check-6408465-5390543.png"
alt="Health Checkups"
/>
<h3>Health Checkups</h3>
<p>We can help you book</p>
</div>
<div class="quick-card">
<img
src="https://img.icons8.com/ios-filled/50/4caf50/test-tube.png"
alt="Tests & Services"
/>
<h3>Tests & Services</h3>
<p>Diagnostics made easy</p>
</div>
</div>
<!-- Reports Section -->
<div class="container" id="reports">
<div class="card">
<h2>Weekly Adherence Report</h2>
<p>Adherence Rate: 85%</p>
<p>Missed Doses: 3</p>
</div>
</div>
<!-- Settings Section -->
<div class="container" id="settings">
<div class="card">
<h2>Settings</h2>
<label>Notification Method:</label>
<select>
<option>Push Notification</option>
<option>Email</option>
<option>SMS</option>
</select>
<button class="btn">Save Settings</button>
</div>
</div>
<!-- About Section -->
<div class="container" id="about">
<div class="card">
<h2>About Smart Pillbox</h2>
<p>
This system helps patients manage their daily medications through an
IoT-enabled smart pillbox. It ensures proper timing, alerts users,
tracks adherence, and enables caregivers to monitor remotely.
</p>
</div>
</div>
<!-- Doctors Section -->
<div class="container" id="doctors">
<div class="card">
<h2>Our Medical Team</h2>
<p>
We collaborate with certified doctors and healthcare professionals who
monitor patient progress and provide support based on adherence
reports.
</p>
</div>
</div>
<!-- Footer with Emergency and Complaint -->
<footer>
<div class="footer-section">
<h3>Emergency Contact</h3>
<p>
📞 Call us immediately at <strong>+91 800 555 0175</strong> for urgent
medical assistance.
</p>
<br />
<h3>Patient Complaint or Concern</h3>
<form>
<label>Your Name:</label>
<input type="text" placeholder="Enter your name" />
<label>Your Concern:</label>
<textarea
rows="4"
placeholder="Describe your issue or feedback..."
></textarea>
<button type="submit" class="btn">Submit</button>
</form>
</div>
</footer>
</body>
</html>