-
Notifications
You must be signed in to change notification settings - Fork 0
/
details.html
535 lines (509 loc) · 27.6 KB
/
details.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Ilera: Ahava Clinic</title>
<link rel="shortcut icon" href="./assets/img/favicon.png" type="image/x-icon">
<!-- Import Vendor CSS -->
<link rel="stylesheet" href="./assets/vendor/bootstrap-5.0/css/bootstrap.css">
<link rel="stylesheet" href="./assets/vendor/fontawesome-5.15.2/css/all.css">
<!-- Import Main CSS -->
<link rel="stylesheet" href="./assets/css/main.css">
<!-- Google Maps -->
<script
src="https://maps.googleapis.com/maps/api/js?key=AIzaSyCwuCYMyS1XoqIgJSg088ooVH2Vupwc2oo&callback=initMap&libraries=&v=weekly"
defer></script>
<script>
const baseMap = {
zoom: 13,
disableDefaultUI: true,
mapTypeControl: false,
scaleControl: true
}
const ahavaLatLng = { lat: 6.564104110934636, lng: 3.3757987340626983 }
const ahavaMap = {
center: ahavaLatLng,
...baseMap
}
function initMap() {
let map = new google.maps.Map(document.getElementById("ahavaMap"), ahavaMap);
new google.maps.Marker({
position: ahavaLatLng,
map,
title: "Ahavah Clinic",
});
}
</script>
</head>
<body class="d-flex flex-column h-100">
<header class="d-flex text-white bg-primary flex-column flex-md-row align-items-center p-3 px-md-4 shadow">
<div class="my-0 me-md-auto fw-normal"><a href="index.html"><img src="./assets/img/ilera-logo-white.svg"
alt="Ilera-logo" class="logo"></a>
</div>
<nav class="my-2 my-md-0 me-md-3 mt-3 mt-md-0">
<ul class="nav">
<li class="nav-item ms-4">
<a href="search.html" class="d-flex align-items-center text-white px-2 px-md-0">
<i class="fas fa-search fa-fw d-block"></i>
<span class="nav-link active px-2 d-none d-md-block">Hospitals</span>
</a>
</li>
<li class="nav-item ms-4">
<a href="#" class="d-flex align-items-center text-white px-2 px-md-0">
<i class="fas fa-building fa-fw d-block"></i>
<span class="nav-link px-2 d-none d-md-block">About</span>
</a>
</li>
<li class="nav-item ms-4">
<a href="#" class="d-flex align-items-center text-white px-2 px-md-0">
<i class="fas fa-blog fa-fw d-block"></i>
<span class="nav-link px-2 d-none d-md-block">Blog</span>
</a>
</li>
<li class="nav-item ms-4">
<a href="#" class="d-flex align-items-center text-white px-2 px-md-0">
<i class="fas fa-bars fa-fw d-block"></i>
<span class="nav-link px-2 d-none d-md-block">More</span>
</a>
</li>
</ul>
</nav>
</header>
<main class="details-page">
<div class="container-fluid">
<div class="row">
<div class="col-12 hospital-profile page-section">
<div class="p-4 p-md-0 w-100">
<div class="container">
<div class="row">
<div class="col-12">
<div class="card border-0 pb-5">
<div class="card-title px-5">
<h4 class="fw-bold section-title left-title">Registration Form</h4>
</div>
<div class="card-body pt-4 px-5">
<form action="#">
<div class="row mb-3">
<div class="col-12 col-sm-4">
<div class="form-group mb-3">
<label for="first-name" id="First-Name-Label" class="fw-bold fs-6 mb-2 no-wrap">First
Name</label>
<input type="text" class="form-control" name="first-name" id="first-name"
aria-describedby="First-Name-Label" placeholder="Enter Name">
</div>
</div>
<div class="col-12 col-sm-4">
<div class="form-group mb-3">
<label for="middle-name" id="Middle-Name" class="fw-bold fs-6 mb-2 no-wrap">Middle
Name</label>
<input type="text" class="form-control" name="middle-name" id="middle-name"
aria-describedby="Middle-Name" placeholder="Enter Name">
</div>
</div>
<div class="col-12 col-sm-4">
<div class="form-group mb-3">
<label for="surname-name" class="fw-bold fs-6 mb-2 no-wrap">Surname Name</label>
<input type="text" class="form-control" name="surname-name" id="surname-name"
placeholder="Enter Name">
</div>
</div>
</div>
<div class="row mb-3">
<div class="col-12">
<div class="form-group mb-3">
<label for="address-line-1" class="fw-bold fs-6 no-wrap mb-2">Address</label>
<input type="text" class="form-control" name="address-line-1" id="address-line-1"
placeholder="Address Line 1">
<small class="text-muted mb-3 fs-small d-block pt-1">Street Address</small>
<input type="text" class="form-control" name="address-line-2" id="address-line-2"
placeholder="Address Line 2">
<small class="text-muted mb-3 fs-small d-block pt-1">Address Line 2</small>
</div>
</div>
<div class="col-6">
<div class="form-group mb-3">
<input type="text" class="form-control" name="city" id="city" placeholder="City">
<small class="text-muted mb-3 fs-small d-block pt-1">City</small>
</div>
</div>
<div class="col-6">
<div class="form-group mb-3">
<input type="text" class="form-control" name="city" id="State" placeholder="State">
<small class="text-muted mb-3 fs-small d-block pt-1">State/Province</small>
</div>
</div>
</div>
<div class="row mb-3">
<div class="col-12">
<div class="form-group mb-3">
<label for="Area-Code" class="fw-bold fs-6 no-wrap mb-2">Phone</label>
<div class="row">
<div class="col-4">
<input type="text" class="form-control" name="Area-Code" id="Area-Code"
placeholder="Area Code">
<small class="text-muted mb-3 fs-small d-block pt-1">Area Code</small>
</div>
<div class="col-8">
<input type="text" class="form-control" name="Phone" id="Phone" placeholder="Phone">
<small class="text-muted mb-3 fs-small d-block pt-1">Phone</small>
</div>
</div>
</div>
</div>
</div>
<div class="row mb-3">
<div class="col-12">
<div class="form-group mb-3">
<label for="email" class="fw-bold fs-6 no-wrap mb-2">Email
<small>(optional)</small></label>
<input type="text" class="form-control" name="email" id="email" placeholder="email">
</div>
</div>
</div>
<div class="row mb-3">
<div class="col-4">
<div class="form-group mb-3">
<label for="gender" class="fw-bold fs-6 no-wrap mb-2">Gender</label>
<select class="form-control form-select" name="gender" id="gender">
<option value="male">Male</option>
<option value="female">Female</option>
</select>
</div>
</div>
<div class="col-8">
<div class="form-group mb-3">
<label for="date" class="fw-bold fs-6 no-wrap mb-2">Date of Birth</label>
<div class="row">
<div class="col-4">
<div class="form-group mb-3">
<select class="form-control form-select" name="date" id="date">
<option value="25">25</option>
<option value="26">26</option>
<option value="27">27</option>
<option value="...">...</option>
</select>
<small class="text-muted mb-3 fs-small d-block pt-1">Date</small>
</div>
</div>
<div class="col-4">
<div class="form-group mb-3">
<select class="form-control form-select" name="month" id="month">
<option value="10">10</option>
<option value="11">11</option>
<option value="...">...</option>
</select>
<small class="text-muted mb-3 fs-small d-block pt-1">Month</small>
</div>
</div>
<div class="col-4">
<div class="form-group mb-3">
<select class="form-control form-select" name="year" id="year">
<option value="1997">1997</option>
<option value="1998">1998</option>
<option value="1999">1999</option>
<option value="2000">2000</option>
<option value="...">...</option>
</select>
<small class="text-muted mb-3 fs-small d-block pt-1">Year</small>
</div>
</div>
</div>
</div>
</div>
</div>
<hr class="mt-2 mb-4">
<div class="row mb-3">
<div class="col-12">
<div class="form-group mb-3">
<label for="reason-for-registration" id="reason-for-registration-n"
class="fw-bold fs-6 no-wrap mb-2">Reason for
Registration</label>
<input type="text" class="form-control" name="reason-for-registration"
id="reason-for-registration" aria-describedby="reason-for-registration-n"
placeholder="Specify Reason">
</div>
</div>
</div>
<div class="row mb-3">
<div class="col-12">
<div class="form-group">
<label for="date-2" class="fw-bold fs-6 no-wrap mb-2">Schedule Date</label>
<div class="row">
<div class="col-4">
<div class="form-group mb-3">
<select class="form-control form-select" name="date" id="date-2">
<option value="1">1</option>
<option value="2">2</option>
<option value="3">3</option>
<option value="...">...</option>
</select>
<small class="text-muted mb-3 fs-small d-block pt-1">Date</small>
</div>
</div>
<div class="col-4">
<div class="form-group mb-3">
<select class="form-control form-select" name="month" id="month-2">
<option value="1">1</option>
<option value="2">2</option>
<option value="3">3</option>
<option value="...">...</option>
</select>
<small class="text-muted mb-3 fs-small d-block pt-1">Month</small>
</div>
</div>
<div class="col-4">
<div class="form-group mb-3">
<select class="form-control form-select" name="year" id="year-2">
<option value="2020">2020</option>
<option value="2021">2021</option>
<option value="...">...</option>
</select>
<small class="text-muted mb-3 fs-small d-block pt-1">Year</small>
</div>
</div>
</div>
</div>
</div>
</div>
<div class="row mb-3">
<div class="col-12">
<div class="form-group">
<label for="comments" class="fw-bold fs-6 no-wrap mb-2">Additional Notes</label>
<textarea class="form-control" name="comments" id="comments" rows="5"></textarea>
</div>
</div>
</div>
<div class="row mb-5">
<div class="col-12">
<button class="btn btn-primary text-white me-2 mt-2" type="submit">Sign Up</button>
<button class="btn btn-primary me-2 text-green bg-transparent border-0 mt-2"
type="button">Sign
In</button>
</div>
</div>
</form>
</div>
</div>
</div>
<div class="col-12 mt-4 mt-xl-0">
<div class="row text-center text-lg-start">
<div class="col-12">
<div class="card border-1 shadow-sm pb-5">
<div class="card-title px-5 pt-5 d-flex">
<img src="./assets/img/ahava-love.svg" alt="ahava" height="32" class="me-3">
<h2 class="section-title left-title no-after text-primary">Ahava Clinic</h2>
</div>
<div class="card-body pt-4 px-5">
<div class="d-grid details-grid text-center text-uppercase">
<div class="card-text mb-2 w-100 border fw-bold p-3">Type:
<span class="text-darker-blue">Community Hospital</span>
</div>
<div class="card-text mb-2 w-100 border fw-bold p-3">State:
<span class="text-darker-blue">Lagos</span>
</div>
<div class="card-text mb-2 w-100 border fw-bold p-3">LGA:
<span class="text-darker-blue">Kosofe</span>
</div>
<div class="card-text mb-2 w-100 border fw-bold p-3">Stars:
<ul class="d-inline-flex list-unstyled mb-0">
<li class="me-2 text-secondary"><i class="fas fa-star fa-sm fa-fw"></i></li>
<li class="me-2 text-secondary"><i class="fas fa-star fa-sm fa-fw"></i></li>
<li class="me-2 text-secondary"><i class="fas fa-star fa-sm fa-fw"></i></li>
<li class="me-2 text-secondary"><i class="fas fa-star fa-sm fa-fw"></i></li>
<li class="me-2 text-secondary"><i class="fas fa-star fa-sm fa-fw"></i></li>
</ul>
</div>
<div class="card-text mb-2 w-100 border fw-bold p-3">Doctors:
<span class="text-darker-blue">30 Doctors</span>
</div>
<div class="card-text mb-2 w-100 border fw-bold p-3">Nurses:
<span class="text-darker-blue">50 Doctors</span>
</div>
<div class="card-text mb-2 w-100 border fw-bold p-3">Bed Space:
<span class="text-darker-blue">150 beds</span>
</div>
<div class="card-text mb-2 w-100 border fw-bold p-3">Services:
<span class="text-darker-blue">Day Surgery & Palliative Care</span>
</div>
</div>
<div class="d-flex justify-content-md-end justify-content-center my-2"><button
class="btn btn-primary text-white text-uppercase fw-bold bg-darker-blue border-0"
type="button">Apply</button>
</div>
<div
class="mt-5 d-flex align-items-center flex-column flex-md-row justify-content-md-end justify-content-center no-wrap">
<div class="card-text mb-2 d-flex align-items-center ms-4"><i
class="fas fa-phone fa-sm fa-fw text-darker-blue me-2"></i>
<a class="text-normal" href="tel:+#">+234 000 000 0000</a>
</div>
<div class="card-text mb-2 d-flex align-items-center ms-4"><i
class="fas fa-mail-bulk fa-sm fa-fw text-darker-blue me-2"></i>
<a class="text-normal" href="mailto:#">hello@ahava.com</a>
</div>
<div class="card-text mb-2 d-flex align-items-center ms-4"><i
class="fab fa-internet-explorer fa-sm fa-fw text-darker-blue me-2"></i>
<a class="text-normal" href="#">https://www.ahava.com</a>
</div>
</div>
</div>
</div>
<div class="col-12">
<div class="d-block py-3 mt-4 mb-3">Ahava clinic is a clinic filled with love and managed in
accordance with a
Hospital Constitution approved by the Charities Regulatory Authority. As an organization, we
believe in the power of LOVE. We love everyone and we especially love our patients. We also
believe in miracles as we have seen them happen over and over again. The power to heal is
here.
</div>
</div>
<div class="col-12 mb-5">
<div class="bg-lighter-grey d-block py-4 px-5 text-uppercase fw-bold position-relative"><a
href="#" class="text-normal"><i class="fas fa-arrow-right fa-xs small-arrow"></i> <i
class="fas fa-list fa-fw"></i> Click here to view more
details</a>
</div>
</div>
<div class="col-12 mb-5">
<h4 class="section-title d-block text-primary text-uppercase pt-5 no-after mb-2"><i
class="far fa-compass"></i>
Map Directions</h4>
<div class="d-block my-3 rounded-5 shadow-sm" id="ahavaMap" style="height: 400px;"></div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</main>
<footer class="footer mt-auto">
<div class="container-fluid bg-black">
<div class="row">
<div class="col-12">
<div class="container">
<div
class="row position-relative text-center pt-4 pb-3 text-uppercase fs-small d-flex align-items-center no-wrap">
<div class="col-12">
<div class="d-lg-none d-block px-0 w-15 m-auto mb-2 mb-lg-0">
<a href="index.html">
<div class="image w-100 border rounded-circle light-border">
<div class="full-image-container position-relative pb-100p">
<img src="./assets/img/ilera-icon-white.svg" alt="register"
class="img-fluid absolute-centered w-50">
</div>
</div>
</a>
</div>
</div>
<div class="col-lg col-md-6 px-0">
<div class="nav border-top border-bottom border-1 light-border mb-2 mb-md-0">
<div class="nav-item col-3">
<a class="nav-link text-white" href="index.html">Home</a>
</div>
<div class="nav-item col-3">
<a class="nav-link text-white" href="search.html">Search</a>
</div>
<div class="nav-item col-3">
<a class="nav-link text-white" href="#">About Us</a>
</div>
<div class="nav-item col-3">
<a class="nav-link text-white" href="#">Advertise</a>
</div>
</div>
</div>
<div class="col-lg-1 d-lg-block d-none px-0">
<a href="index.html">
<div class="image w-100 border rounded-circle light-border">
<div class="full-image-container position-relative pb-100p">
<img src="./assets/img/ilera-icon-white.svg" alt="register"
class="img-fluid absolute-centered w-50">
</div>
</div>
</a>
</div>
<div class="col-lg col-md-6 px-0">
<div class="nav border-top border-bottom border-1 light-border">
<div class="nav-item col-3">
<a class="nav-link text-white" href="#">Facebook</a>
</div>
<div class="nav-item col-3">
<a class="nav-link text-white" href="#">Twitter</a>
</div>
<div class="nav-item col-3">
<a class="nav-link text-white" href="#">Blog</a>
</div>
<div class="nav-item col-3">
<a class="nav-link text-white" href="#">Google</a>
</div>
</div>
</div>
</div>
<div class="row text-center text-white py-4">
<div class="col-md-4 col-12 mb-3 mb-md-0">
<h5 class="fw-bold mt-4 mb-5 text-uppercase">Subscribe</h5>
<form action="#">
<div class="form-group">
<div class="input-group flex-lg-row flex-md-column flex-row">
<input type="text" class="form-control rounded-0 w-lg-1 w-md-100 w-1" name="subscribe"
id="subscribe-input" placeholder="Enter Email">
<button class="btn btn-secondary bg-grey text-white border-0 fw-bold px-4 rounded-0"
type="submit">Subscribe</button>
</div>
</div>
</form>
</div>
<div class="col-md-4 col-12 mb-3 mb-md-0">
<h5 class="fw-bold mt-4 mb-5 text-uppercase">Contact</h5>
<p>Have a question for Ilera?
<span class="d-block"><a href="mailto:talk@ilera.com.ng"
class="text-secondary">talk@ilera.com.ng</a></span>
</p>
</div>
<div class="col-md-4 col-12 mb-3 mb-md-0">
<h5 class="fw-bold mt-4 mb-5 text-uppercase">About</h5>
<p>Ilera Search is a make believe directory for hospitals in Nigeria.<span class="d-inline-block"><a
href="#" class="text-secondary"> Learn more.</a></span></p>
</div>
</div>
</div>
</div>
</div>
</div>
<div class="container-fluid bg-grey">
<div class="row">
<div class="col-12">
<div class="container">
<div class="row py-3">
<div class="col-12 col-sm-4">
<ul class="d-flex list-unstyled px-0 m-0 justify-content-center justify-content-sm-start">
<li class="me-3"><a href="#" class="text-muted"><i class="fab fa-facebook fa-fw"></i></a></li>
<li class="me-3"><a href="#" class="text-muted"><i class="fab fa-twitter fa-fw"></i></a></li>
<li class="me-3"><a href="#" class="text-muted"><i class="fas fa-rss fa-fw"></i></a></li>
<li class="me-3"><a href="#" class="text-muted"><i class="fab fa-google-plus fa-fw"></i></a></li>
<li class="me-3"><a href="#" class="text-muted"><i class="fab fa-instagram fa-fw"></i></a></li>
</ul>
</div>
<div
class="col-12 col-sm-8 text-muted fs-small d-flex align-items-center justify-content-center justify-content-sm-end mt-2 mt-sm-0">
<span class="mx-3">
Copyright Ilera 2021 ©
</span>
<span>
Made with <i class="fas fa-heart fa-fw"></i> in Lagos.
</span>
</div>
</div>
</div>
</div>
</div>
</div>
</footer>
<script src="./assets/vendor/bootstrap-5.0/js/bootstrap.bundle.js"></script>
<script src="./assets/vendor/fontawesome-5.15.2/js/all.js"></script>
</body>
</html>