-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathchat.html
617 lines (418 loc) · 18.5 KB
/
chat.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
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
<!doctype html>
<html lang="en">
<head>
<title>Title</title>
<!-- Required meta tags -->
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
<link rel="stylesheet" href="chat.css">
<script src="https://kit.fontawesome.com/a076d05399.js"></script>
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.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 href="https://fonts.googleapis.com/css2?family=Roboto:wght@400;700&display=swap" rel="stylesheet">
<link rel="stylesheet" href="https://unpkg.com/botui@0.3.9/build/botui.min.css" />
<link rel="stylesheet" href="https://unpkg.com/botui@0.3.9/build/botui-theme-default.css" />
<style>
</style>
</head>
<body>
<nav>
<div class="topnav" id="myTopnav">
<div class="logo">
<a href="index.html" >ConnectHealth</a>
</div>
<a href="contact.html">Contact</a>
<a href="blog.html">News Updates</a>
<a href="pricing.html">Pricing</a>
<div class="dropdown">
<button class="dropbtn">Solutions
<i class="fa fa-caret-down"></i>
</button>
<div class="dropdown-content">
<a href="video.html">Video Service</a>
<a href="schedule.html">Scheduling</a>
<a href="message.html">Automatic Messaging</a>
<a href="database.html">Medical Record Database</a>
<a style="color:#32b3a3;"href="chat.html">Direct Chat Line</a>
<a href="analytic.html">Access to Analytics</a>
</div>
</div>
<a href="about.html">About</a>
<a href="index.html">Home</a>
<a href="javascript:void(0);" style="font-size:15px;" class="icon" onclick="myFunction()">☰</a>
</div>
</nav>
<script>
function myFunction() {
var x = document.getElementById("myTopnav");
if (x.className === "topnav") {
x.className += " responsive";
} else {
x.className = "topnav";
}
}
</script>
<a class="s-btn-team" id="fixedbutton" style="color:#dfe5e8">Team <span style="font-weight: 800;"> 2027-1</span> </a>
<!-- End Header -->
<!-- ======= Hero Section ======= -->
<!--========== HOME ==========-->
<section class="home" id="home">
<div class="home__container bd-container bd-grid">
<div class="home__data">
<h1 class="home_title">Direct Chat Line</h1>
<h2 class="home__subtitle"> Help your patients connect directly to an on duty staff member that will help guide them.
</h2>
<a href="pricing.html" class="button">View Prices</a>
</div>
<img src="https://cdn.glitch.com/fe9ee492-4350-4c23-91a3-7de989bb85f5%2FDirect%20Chat%20Line%20Graphic%20Main.svg?v=1617590685625" alt="" class="home__img">
</div>
<div class="custom-shape-divider-bottom-1612574261">
<svg data-name="Layer 1" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 120" preserveAspectRatio="none">
<path d="M321.39,56.44c58-10.79,114.16-30.13,172-41.86,82.39-16.72,168.19-17.73,250.45-.39C823.78,31,906.67,72,985.66,92.83c70.05,18.48,146.53,26.09,214.34,3V0H0V27.35A600.21,600.21,0,0,0,321.39,56.44Z" class="shape-fill"></path>
</svg>
</div>
</section>
<!-- End Hero -->
<!---- Text Info ---
<div class="textinfo">
<div class="row">
<div class="col-lg-6" id="rightimage">
<img src="https://cdn.glitch.com/fe9ee492-4350-4c23-91a3-7de989bb85f5%2FScreen%20Shot%202021-01-22%20at%209.57.56%20PM.png?v=1611374286095" alt="" class="home__img">
</div>
<div class="col-lg-6" id="lefttext">
<h2>Title Info</h2>
<p>Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur.</p>
</div>
</div>
</div> -->
<!---- Accordion Info --
<div class="videoinfo">
<div class="video-blurb">
<h2>Enjoy Our Cool Features Smth</h2>
<p>
Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do
eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad
minim veniam, quis nostrud exercitation ullamco laboris nisi ut
aliquip ex ea commodo consequat. Duis aute irure dolor in
reprehenderit in voluptate velit
</p>
</div>
<div class="row">
<div class="col-lg-7" id="videoitem">
<div class="accordion1">
<h1>FAQ</h1>
<div class="accordion">
<div class="accordion-item">
<div class="accordion-head">
What Else Do We Offer?
</div>
<div class="accordion-body">
<div class="accordion-content">
This is information.
</div>
</div>
</div>
<div class="accordion-item">
<div class="accordion-head">
What Else Do We Offer?
</div>
<div class="accordion-body">
<div class="accordion-content">
This is information.
</div>
</div>
</div>
<div class="accordion-item">
<div class="accordion-head">
What Else Do We Offer?
</div>
<div class="accordion-body">
<div class="accordion-content">
This is information.
</div>
</div>
</div>
</div>
</div>
</div>
<div class="col-lg-4" id="video-vid">
<iframe
width="500"
height="420"
src="https://www.youtube.com/embed/NSRh78Qw6HY"
>
</iframe>
</div>
</div>
</div> -->
<!---- Video and Product --------->
<div class="videoinfo">
<div class="video-blurb">
<h2>Benefits</h2>
<p>There are many benefits to our direct chat line service: the ability to exclusively connect to a guide to always make sure your patients have their time accounted for, live action to answer questions, and a fulfilled purpose are all things your practice will greatly benefit from.
</p>
</div>
<div class="row">
<div class="col-lg-7" id="videoitem">
<table class="video-table">
<tbody>
<tr>
<td>
<img
alt="2"
src="https://cdn.glitch.com/fe9ee492-4350-4c23-91a3-7de989bb85f5%2FDirect%20Chat%20Line%201.png?v=1613690487643"
/>
</td>
<td>
<h1>Benefit #1 </h1>
<p>
The chat line service lets you and your patients establish a direct line of communication while they navigate your website and digital features.
</p>
</td>
</tr>
</tbody>
</table>
<table class="video-table">
<tbody>
<tr>
<td>
<img
alt="2"
src="https://cdn.glitch.com/fe9ee492-4350-4c23-91a3-7de989bb85f5%2FDirect%20Chat%20Line%202.png?v=1613690487718"
/>
</td>
<td>
<h1>Benefit #2</h1>
It also lets your patients easily resolve any problems that may come up during the online process by allowing them to communicate with an actual person.
</td>
</tr>
</tbody>
</table>
<table class="video-table">
<tbody>
<tr>
<td>
<img
alt="2"
src="https://cdn.glitch.com/fe9ee492-4350-4c23-91a3-7de989bb85f5%2FDirect%20Chat%20Line%203.png?v=1613690488042"
/>
</td>
<td>
<h1>Benefit #3 </h1>
And, it comes with a feature that will display whether someone is able to talk with the patient, how many people are ahead of them in line, and the estimated time it will take.
</td>
</tr>
</tbody>
</table>
</div>
<div class="col-lg-4" id="video-vid">
<!-- <iframe src="https://cdn.glitch.com/fe9ee492-4350-4c23-91a3-7de989bb85f5%2FIMG_5203.mov?v=1613284556117" height="864" allowtransparency="false" frameborder="0"></iframe>-->
<img src="https://cdn.glitch.com/fe9ee492-4350-4c23-91a3-7de989bb85f5%2FDirect%20Chat%20Line%20Graphic%20Light%20Bulb.svg?v=1617590823898">
</div>
</div>
</div>
<!-- <div class="videoinfo1">
<div class="video-blurb1">
<h2>
Demo
</h2>
<p>
Click the button for a demo of how the direct chat line feature would look like from your patients' end.
</p>
<p1>
Disclaimer: The chat line solution will require a person on your end to reply to your patients and will not be automated.
</p1>
</div>
<a class="chat-btn" href="chatbot.html" target="_blank" onclick="window.open(this.href,'targetWindow',
`toolbar=no,
location=no,
status=no,
menubar=no,
scrollbars=yes,
resizable=yes,
width=550,
height=550`);
return false;">Try it Out!</a>
</div>-->
<div class="container-fluid" id="videoinfo1">
<div class="row">
<div class="col-sm-6">
<h2>
Demo
</h2>
<p>
Click the button for a demo of how the direct chat line feature would look like from your patients' end.
</p>
<p style="font-size: 17px;">
Disclaimer: The chat line solution will require a person on your end to reply to your patients and will not be automated.
</p>
</div>
<div class="col-sm-6" >
<a class="cht-btn" href="chatbot.html" target="_blank" onclick="window.open(this.href,'targetWindow',
`toolbar=no,
location=no,
status=no,
menubar=no,
scrollbars=yes,
resizable=yes,
width=550,
height=550`);
return false;">Try it Out!</a>
<a class="cht-btn" target="_blank" href="pricing.html"> View Prices </a>
</div>
</div>
</div>
<!-- Chat Bot
<div class="yee-yee">
<div class="botui-app-container" id="help-bot">
<bot-ui></bot-ui>
</div>
<!-- use Vue version 2.0.5 for HTML embeds | https://github.com/botui/botui/issues/103
<!-- remove .min from the file name to use in development mode
<script src="https://cdn.jsdelivr.net/npm/vue@2.6.10/dist/vue.min.js"></script>
<script src="https://cdn.jsdelivr.net/npm/botui@0.3.9/build/botui.min.js"></script>
<script src="./bot-script.js"></script>
</div> --->
<!-- Services Section ======= -->
<section class="services">
<!--heading---------------->
<!--services-box-container------------------->
<div class="s-box-container">
<!--service-box-1---------------->
<div class="s-box">
<!--top-bar-------->
<div class="bar"></div>
<!--img---------->
<img alt="2" src="https://cdn.glitch.com/fe9ee492-4350-4c23-91a3-7de989bb85f5%2FScheduling%203%202.0.png?v=1613690490001"
width="120"
height="auto" />
<!--servies-name---------->
<h1>Help with Forms</h1>
<!--details------>
<p>If there is ever a need to take care of medical forms before an appointment or even quick advice, our direct chat line service is a perfect solution. The direct connection this offers from your staff to your patients is an excellent way to exchange questions give assistance in a secure way.
</p>
</div>
<!--service-box-1---------------->
<div class="s-box">
<!--top-bar-------->
<div class="bar"></div>
<!--img---------->
<img alt="2" src="https://cdn.glitch.com/fe9ee492-4350-4c23-91a3-7de989bb85f5%2FScheduling%201.png?v=1613690489688"
width="140"
height="auto"/>
<!--servies-name---------->
<h1>Precautions</h1>
<!--details------>
<p>We also have the ability for our chat line to store pre-determined answers to your most asked questions, so you can function even in the case of connectivity issues between your staff and customers or when there is an unavailability of staff while help is needed.
</p>
</div>
<!--service-box-1---------------->
<div class="s-box">
<!--top-bar-------->
<div class="bar"></div>
<!--img---------->
<img alt="2" src="https://cdn.glitch.com/fe9ee492-4350-4c23-91a3-7de989bb85f5%2FScheduling%202.png?v=1613690488724"
width="115"
height="auto"/>
<!--servies-name---------->
<h1>Options</h1>
<!--details------>
<p>We offer various different options when it comes to this service. This includes the ability to have a voiceover of the text being sent, and send a voice text if needed through the chat to address any emergencies or issues that might come up when trying to contact a patient or being contacted by one.
</p>
<!--btn---------->
</div>
</div>
</section>
<!---Footer---->
<div class="bottomfooter">
<svg height="100%" width="100%" id="bg-svg" viewBox="0 0 1440 400" xmlns="http://www.w3.org/2000/svg" class="transition duration-300 ease-in-out delay-150"><path d="M 0,400 C 0,400 0,133 0,133 C 106.25,145.89285714285714 212.5,158.78571428571428 327,148 C 441.5,137.21428571428572 564.2500000000001,102.75 687,92 C 809.7499999999999,81.25 932.5,94.21428571428571 1058,105 C 1183.5,115.78571428571429 1311.75,124.39285714285714 1440,133 C 1440,133 1440,400 1440,400 Z" stroke="none" stroke-width="0" fill="#24262b88" class="transition-all duration-300 ease-in-out delay-150"></path><path d="M 0,400 C 0,400 0,266 0,266 C 93.17857142857142,281.17857142857144 186.35714285714283,296.35714285714283 294,295 C 401.64285714285717,293.64285714285717 523.7499999999999,275.75 667,261 C 810.2500000000001,246.24999999999997 974.6428571428573,234.64285714285717 1107,236 C 1239.3571428571427,237.35714285714283 1339.6785714285713,251.67857142857142 1440,266 C 1440,266 1440,400 1440,400 Z" stroke="none" stroke-width="0" fill="#24262bff" class="transition-all duration-300 ease-in-out delay-150"></path></svg>
<footer class="footer">
<div class="container">
<div class="row">
<div class="footer-col">
<h4>ConnectHealth</h4>
<ul>
<li><a href="index.html">home</a></li>
<li><a href="about.html">about us</a></li>
<li><a href="blog.html">news updates</a></li>
<li><a href="contact.html">contact us</a></li>
</ul>
</div>
<div class="footer-col">
<h4>our services</h4>
<ul>
<li><a href="video.html">Video Service</a></li>
<li><a href="schedule.html">Online Scheduling</a></li>
<li><a href="message.html">Automatic Messaging</a></li>
<li><a href="database.html">Medical Record Database</a></li>
<li><a href="chat.html">Direct Chat Line</a></li>
<li><a href="analytic.html">Access to Analytics</a></li>
</ul>
</div>
<div class="footer-col">
<h4>online shop</h4>
<ul>
<li><a href="pricing.html">pricing</a></li>
</ul>
</div>
<div class="footer-col">
<h4>More</h4>
<ul>
<li><a href="about.html">citations</a></li>
</ul>
</div>
</div>
</div>
</footer>
</div>
<script>
const accordionItemHeaders = document.querySelectorAll(".accordion-head");
accordionItemHeaders.forEach(accordionItemHeader => {
accordionItemHeader.addEventListener("click", event => {
accordionItemHeader.classList.toggle("active");
const accordionItemBody = accordionItemHeader.nextElementSibling;
if(accordionItemHeader.classList.contains("active")) {
accordionItemBody.style.maxHeight = accordionItemBody.scrollHeight + "px";
}
else {
accordionItemBody.style.maxHeight = 0;
}
});
});
const left = document.querySelector('.left');
const right = document.querySelector('.right');
const slider = document.querySelector('.slider');
const indicatorParent = document.querySelector('.control ul');
const indicators = document.querySelectorAll('.control li');
index = 0;
indicators.forEach((indicator, i) => {
indicator.addEventListener('click', () => {
document.querySelector('.control .selected').classList.remove('selected');
indicator.classList.add('selected');
slider.style.transform = 'translateX(' + (i) * -25 + '%)';
index = i;
});
});
left.addEventListener('click', function() {
index = (index > 0) ? index -1 : 0;
document.querySelector('.control .selected').classList.remove('selected');
indicatorParent.children[index].classList.add('selected');
slider.style.transform = 'translateX(' + (index) * -25 + '%)';
});
right.addEventListener('click', function() {
index = (index < 4 - 1) ? index+1 : 3;
document.querySelector('.control .selected').classList.remove('selected');
indicatorParent.children[index].classList.add('selected');
slider.style.transform = 'translateX(' + (index) * -25 + '%)';
});
ch
</script>
<!--========== SCROLL REVEAL ==========-->
<script src="https://unpkg.com/scrollreveal"></script>
<!--========== MAIN JS ==========-->
<script src="main.js"></script>
<!--========== MAIN JS ==========-->
<script src="message.js"></script>
</body>
</html>