-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
421 lines (379 loc) · 18.3 KB
/
index.html
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
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
<!doctype html>
<html lang="en">
<head>
<title>HealthBlock AppointAI</title>
<!-- Required meta tags -->
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
<link rel="icon" href="favicon.ico" type="image/x-icon">
<!-- For PNG format -->
<link rel="icon" href="img/logo.png" type="image/png">
<link rel="stylesheet" href="main.css">
<!-- Bootstrap CSS -->
<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.3.1/css/bootstrap.min.css" integrity="sha384-ggOyR0iXCbMQv3Xipma34MD+dH/1fQ784/j6cY/iJTQUOhcWr7x9JvoRxT2MZw1T" crossorigin="anonymous">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.0.0-beta3/css/all.min.css">
</head>
<body>
<nav class="navbar navbar-expand-lg nav-back fixed-top" id="mainNav">
<div class="container">
<a class="navbar-brand" href="index.html">
<img src="img/logo.png" alt="HealthBlock Logo" style="height: 40px;">
<b><span>HealthBlock AppointAI</span></b>
</a>
<button class="navbar-toggler navbar-toggler-right" type="button"
data-toggle="collapse" data-target="#navbarResponsive"
aria-controls="navbarResponsive" aria-expanded="false"
aria-label="Toggle navigation">
<i class="fas fa-syringe fa-2x"></i>
</button>
<div class="collapse navbar-collapse" id="navbarResponsive">
<ul class="navbar-nav ml-auto">
<li class="nav-item"><a class="nav-link" href="index.html">Home</a></li>
<li class="nav-item dropdown">
<a class="nav-link dropdown-toggle" href="#" id="navbarDropdownPatient" role="button" aria-haspopup="true" aria-expanded="false">
Patient
</a>
<div class="dropdown-menu" aria-labelledby="navbarDropdownPatient">
<a class="dropdown-item" href="patient_auth/login.html">Login</a>
<a class="dropdown-item" href="patient_auth/signup.html">Sign Up</a>
</div>
</li>
<li class="nav-item dropdown">
<a class="nav-link dropdown-toggle" href="#" id="navbarDropdownDoctor" role="button" aria-haspopup="true" aria-expanded="false">
Doctor
</a>
<div class="dropdown-menu" aria-labelledby="navbarDropdownDoctor">
<a class="dropdown-item" href="#">Login</a>
<a class="dropdown-item" href="#">Sign Up</a>
</div>
</li>
<li class="nav-item"><a class="nav-link" href="Appoint_Manage/admin-login.html">Admin</a></li>
<li class="nav-item"><a class="nav-link" href="team.html">Our Team</a></li>
</ul>
</div>
</div>
</nav>
<!-- End Header -->
<div id="chatbot-container">
<div id="chatbot-icon" onclick="toggleIframe()">
<i class="fas fa-robot"></i>
</div>
<div id="chatbot-iframe" class="hidden">
<button id="close-btn" onclick="closeIframe()">
<i class="fas fa-times"></i>
</button>
<iframe width="350" height="430" allow="microphone;" src="https://console.dialogflow.com/api-client/demo/embedded/74caca84-8445-4822-8771-140fe03da8f0"></iframe>
</div>
</div>
<!-- ======= Hero Section ======= -->
<section id="hero" class="d-flex align-items-center">
<div class="container text-center position-relative">
<h1>Accessible Healthcare, Anytime, Anywhere</h1>
<h2>Your Trusted Partner in Health Management</h2>
<a href="#services" class="main-btn">Get Started</a>
</div>
</section>
<!-- End Hero -->
<!-- What we offer section -->
<section class="we-offer-area text-center bg-gray">
<div class="container">
<div class="row">
<div class="col-md-12">
<div class="site-heading text-center" id="services">
<h2>What we <span>Offer</span></h2>
<h4>Seamless, Secure, and Smart: Revolutionizing Healthcare</h4>
</div>
</div>
</div>
<div class="row our-offer-items less-carousel">
<!-- Single Item -->
<div class="col-md-4 col-sm-6 equal-height">
<div class="item">
<i class="fas fa-robot"></i>
<h4>ChatBot AI Integration</h4>
<p>
Empowering your interactions with intelligent, automated responses.
</p>
</div>
</div>
<!-- End Single Item -->
<!-- Single Item -->
<div class="col-md-4 col-sm-6 equal-height">
<div class="item">
<i class="fas fa-lock"></i>
<h4>Blockchain Storage</h4>
<p>
Blockchain-based secure storage for patient-sensitive data.
</p>
</div>
</div>
<!-- End Single Item -->
<!-- Single Item -->
<div class="col-md-4 col-sm-6 equal-height">
<div class="item">
<i class="fas fa-hospital-user"></i>
<h4>Patient Management</h4>
<p>
A secure portal for patients to manage their appointments.
</p>
</div>
</div>
<!-- End Single Item -->
<!-- Single Item -->
<div class="col-md-4 col-sm-6 equal-height">
<div class="item">
<i class="fas fa-ambulance"></i>
<h4>Emergency Scheduling</h4>
<p>
Fast and efficient scheduling for emergency medical needs.
</p>
</div>
</div>
<!-- End Single Item -->
<!-- Single Item -->
<div class="col-md-4 col-sm-6 equal-height">
<div class="item">
<i class="fas fa-recycle"></i>
<h4>Software Update</h4>
<p>
Seamless Updates, Enhanced Performance.
</p>
</div>
</div>
<!-- End Single Item -->
<!-- Single Item -->
<div class="col-md-4 col-sm-6 equal-height">
<div class="item">
<i class="fas fa-headset"></i>
<h4>24x7 Support</h4>
<p>
Customer support for any issues or questions regarding the platform.
</p>
</div>
</div>
<!-- End Single Item -->
</div>
</div>
</section>
<!-- what we offer end -->
<!-- Start Appointment Section -->
<div class="container mt-4 p-4">
<h2 class="text-center my-4"><b>Book Appointment</b></h2>
<div class="row">
<div class="col-md-6">
<form id="appointment-form">
<div class="form-group row">
<label class="col-sm-4 col-lg-4">Patient Name</label>
<div class="col-sm-8 col-lg-8">
<input type="text" id="patient-name" class="form-control" placeholder="Name" required>
</div>
</div>
<div class="form-group row">
<label class="col-sm-4 col-lg-4">Contact</label>
<div class="col-sm-8 col-lg-8">
<input type="tel" id="contact" class="form-control" placeholder="+91 0123456789" required>
</div>
</div>
<div class="form-group row">
<label class="col-sm-4 col-lg-4">Date</label>
<div class="col-sm-8 col-lg-8">
<input type="date" id="date" class="form-control" required>
</div>
</div>
<div class="form-group row">
<label class="col-sm-4 col-lg-4">Time</label>
<div class="col-sm-8 col-lg-8">
<select id="time" class="form-control" required></select>
</div>
</div>
<div class="form-group row">
<label class="col-sm-4 col-lg-4">Symptoms</label>
<div class="col-sm-8 col-lg-8">
<textarea id="symptoms" class="form-control" required></textarea>
</div>
</div>
<div class="form-group row justify-content-end">
<div class="col-sm-5">
<button type="submit" class="btn btn-form">Submit</button>
</div>
</div>
</form>
</div>
<div class="col-md-6 d-flex align-items-center justify-content-center">
<img src="img/appoint.png" alt="Appointment Image" class="img-fluid">
</div>
</div>
</div>
<script>
document.addEventListener('DOMContentLoaded', function() {
const dateInput = document.getElementById('date');
const today = new Date().toISOString().split('T')[0];
dateInput.setAttribute('min', today);
dateInput.addEventListener('change', populateTimeOptions);
function populateTimeOptions() {
const timeInput = document.getElementById('time');
timeInput.innerHTML = '';
const selectedDate = new Date(dateInput.value);
const now = new Date();
let startHour, startMinute;
if (selectedDate.toDateString() === now.toDateString()) {
startHour = now.getHours();
startMinute = now.getMinutes();
if (startMinute > 0 && startMinute <= 30) {
startMinute = 30;
} else if (startMinute > 30) {
startMinute = 0;
startHour += 1;
}
} else {
startHour = 0;
startMinute = 0;
}
for (let hour = startHour; hour < 24; hour++) {
for (let minutes = (hour === startHour ? startMinute : 0); minutes < 60; minutes += 30) {
const option = document.createElement('option');
const period = hour < 12 ? 'AM' : 'PM';
const hour12 = hour % 12 === 0 ? 12 : hour % 12;
const formattedHour = hour12.toString().padStart(2, '0');
const formattedMinutes = minutes.toString().padStart(2, '0');
option.value = `${formattedHour}:${formattedMinutes} ${period}`;
option.textContent = `${formattedHour}:${formattedMinutes} ${period}`;
timeInput.appendChild(option);
}
}
}
populateTimeOptions();
});
document.getElementById('appointment-form').addEventListener('submit', function(event) {
event.preventDefault();
const patientName = document.getElementById('patient-name').value;
const contact = document.getElementById('contact').value;
const date = document.getElementById('date').value;
const time = document.getElementById('time').value;
const symptoms = document.getElementById('symptoms').value;
const appointments = JSON.parse(localStorage.getItem('appointments')) || [];
const conflictingAppointment = appointments.find(appointment => appointment.date === date && appointment.time === time);
if (conflictingAppointment) {
alert('This slot is not available.');
return;
}
const appointment = { id: Date.now(), patientName, contact, date, time, symptoms };
appointments.push(appointment);
localStorage.setItem('appointments', JSON.stringify(appointments));
document.getElementById('appointment-form').reset();
alert('Your appointment has been successfully booked.');
document.getElementById('appointment-form').reset();
});
</script>
<!-- End Appointment Section -->
<!-- Doctor Section -->
<div class="available-doctors-section">
<b><h2>Meet Our Doctors</h2></b>
<p class="tagline">Expert care from trusted professionals dedicated to your health.</p>
<div class="doctor-cards-container">
<!-- Doctor 1 -->
<div class="doctor-card">
<img src="https://cdn.pixabay.com/photo/2019/07/30/15/57/dentist-4373290_640.jpg" alt="Doctor Photo" class="doctor-photo">
<h3>Dr. John Doe</h3>
<p>Cardiologist</p>
<div class="availability-indicator available">Available</div>
<button class="more-info-btn">More Info</button>
</div>
<!-- Doctor 2 -->
<div class="doctor-card">
<img src="https://cdn.pixabay.com/photo/2017/05/23/17/12/doctor-2337835_1280.jpg" alt="Doctor Photo" class="doctor-photo">
<h3>Dr. Jane Smith</h3>
<p>Pediatrician</p>
<div class="availability-indicator busy">Busy</div>
<button class="more-info-btn">More Info</button>
</div>
<!-- Doctor 3 -->
<div class="doctor-card">
<img src="https://cdn.pixabay.com/photo/2017/01/29/21/16/nurse-2019420_1280.jpg" alt="Doctor Photo" class="doctor-photo">
<h3>Dr. Emily Johnson</h3>
<p>Dermatologist</p>
<div class="availability-indicator available">Available</div>
<button class="more-info-btn">More Info</button>
</div>
<!-- Doctor 4 -->
<div class="doctor-card">
<img src="https://cdn.pixabay.com/photo/2024/05/29/08/03/ai-generated-8795644_1280.jpg" alt="Doctor Photo" class="doctor-photo">
<h3>Dr. Michael Brown</h3>
<p>General Practitioner</p>
<div class="availability-indicator available">Available</div>
<button class="more-info-btn">More Info</button>
</div>
<!-- Doctor 5 -->
<div class="doctor-card">
<img src="https://cdn.pixabay.com/photo/2016/11/08/05/29/operation-1807543_640.jpg" alt="Doctor Photo" class="doctor-photo">
<h3>Dr. Sarah Davis</h3>
<p>Oncologist</p>
<div class="availability-indicator busy">Busy</div>
<button class="more-info-btn">More Info</button>
</div>
</div>
</div>
<!-- Doctor section End -->
<!-- Footer -->
<footer class="footer py-4 mt-5">
<div class="container">
<div class="row align-items-center">
<div class="col-lg-4 text-lg-left">Copyright © HealthBlock AppointAI <script>document.write(new Date().getFullYear())</script> </div>
<div class="col-lg-4 my-3 my-lg-0">
<a class="btn btn-back btn-social mx-2" href="#!"><i class="fab fa-twitter"></i></a>
<a class="btn btn-back btn-social mx-2" href="#!"><i class="fab fa-facebook-f"></i></a>
<a class="btn btn-back btn-social mx-2" href="#!"><i class="fab fa-linkedin-in"></i></a>
</div>
</div>
</div>
</footer>
<!-- Optional JavaScript -->
<!-- jQuery first, then Popper.js, then Bootstrap JS -->
<script src="https://code.jquery.com/jquery-3.3.1.slim.min.js" integrity="sha384-q8i/X+965DzO0rT7abK41JStQIAqVgRVzpbzo5smXKp4YfRvH+8abtTE1Pi6jizo" crossorigin="anonymous"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/popper.js/1.14.7/umd/popper.min.js" integrity="sha384-UO2eT0CpHqdSJQ6hJty5KVphtPhzWj9WO1clHTMGa3JDZwrnQq4sF86dIHNDz0W1" crossorigin="anonymous"></script>
<script src="https://stackpath.bootstrapcdn.com/bootstrap/4.3.1/js/bootstrap.min.js" integrity="sha384-JjSmVgyd0p3pXB1rRibZUAYoIIy6OrQ6VrjIEaFf/nJGzIxFDsf4x0xIM+B07jRM" crossorigin="anonymous"></script>
<script>
document.addEventListener('DOMContentLoaded', function() {
const dropdownToggles = document.querySelectorAll('.dropdown-toggle');
dropdownToggles.forEach(toggle => {
toggle.addEventListener('click', function(event) {
event.preventDefault();
const dropdownMenu = this.nextElementSibling;
const isOpen = dropdownMenu.classList.contains('show');
// Close all dropdowns
document.querySelectorAll('.dropdown-menu').forEach(menu => {
menu.classList.remove('show');
});
// Toggle the clicked dropdown
if (!isOpen) {
dropdownMenu.classList.add('show');
}
});
});
// Close dropdowns if clicking outside
document.addEventListener('click', function(event) {
if (!event.target.closest('.dropdown')) {
document.querySelectorAll('.dropdown-menu').forEach(menu => {
menu.classList.remove('show');
});
}
});
});
</script>
<script>
function toggleIframe() {
const iframe = document.getElementById('chatbot-iframe');
const isVisible = iframe.style.display === 'block';
if (isVisible) {
iframe.style.display = 'none';
} else {
iframe.style.display = 'block';
}
}
function closeIframe() {
const iframe = document.getElementById('chatbot-iframe');
iframe.style.display = 'none';
}
</script>
</body>
</html>