-
Notifications
You must be signed in to change notification settings - Fork 0
/
ListOfDoctor.html
301 lines (271 loc) · 14.6 KB
/
ListOfDoctor.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
<!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">
<link rel="icon" href="./assets/images/favicon.png" type="image/gif" sizes="64x64">
<link rel="shortcut icon" href="./assets/images/favicon.png" type="image/gif" sizes="64x64">
<link rel="apple-touch-icon" href="./assets/images/favicon.png" type="image/gif">
<title>Doctor List | E-Health Care</title>
<!-- Google Font CDN -->
<link rel="stylesheet" href="https://fonts.googleapis.com/css?family=Roboto:300,400,500,700&display=swap" />
<!-- Bootstrap CSS -->
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.0.2/dist/css/bootstrap.min.css" rel="stylesheet"
integrity="sha384-EVSTQN3/azprG1Anm3QDgpJLIm9Nao0Yz1ztcQTwFspd3yD65VohhpuuCOmLASjC" crossorigin="anonymous">
<!-- Fontawesome -->
<link rel="stylesheet" href="https://pro.fontawesome.com/releases/v5.10.0/css/all.css"
integrity="sha384-AYmEC3Yw5cVb3ZcuHtOA93w35dYTsvhLPVnYs9eStHfGJvOvKxVfELGroGkvsg+p" crossorigin="anonymous" />
<!-- main css -->
<link rel="stylesheet" href="./assets/css/ListOfDoctor.css">
<!-- js -->
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.5.1/jquery.min.js"></script>
<script>
$(document).ready(function () {
$("#myInput").on("keyup", function () {
var value = $(this).val().toLowerCase();
$("#myTable tr").filter(function () {
$(this).toggle($(this).text().toLowerCase().indexOf(value) > -1)
});
});
});
</script>
</head>
<body>
<!-- Navbar-Start -->
<div class="navbar-shadow">
<div class="container">
<nav class="navbar navbar-expand-lg navbar-light">
<div class="container-fluid">
<a class="navbar-brand" href="index.html">
<img src="./assets/images/logo.svg" alt="" width="75%" height="auto">
</a>
<button class="navbar-toggler" type="button" data-bs-toggle="collapse"
data-bs-target="#navbarSupportedContent" aria-controls="navbarSupportedContent"
aria-expanded="false" aria-label="Toggle navigation">
<span class="navbar-toggler-icon"></span>
</button>
<div class="collapse navbar-collapse" id="navbarSupportedContent">
<ul class="navbar-nav me-auto mb-2 mb-lg-0 mx-auto">
<li class="nav-item">
<a class="nav-link" aria-current="page" href="index.html">Home</a>
</li>
<li class="nav-item">
<a class="nav-link" aria-current="page" href="heart-checkup.html">Heart Checkup</a>
</li>
<li class="nav-item">
<a class="nav-link" aria-current="page" href="covid.html"> <span
class="text-danger">Covid-19</span></a>
</li>
<li class="nav-item">
<a class="nav-link" aria-current="page" href="index.html#aboutUs">About Us</a>
</li>
</ul>
<!-- Login-Button -->
<!-- <a href="./signup.html"><button class="btn signup-btn px-4">Sign Up</button></a> -->
<!-- User-Profile -->
<div class="d-flex align-items-center btn-group">
<button type="button" class="btn dropdown-toggle" data-bs-toggle="dropdown"
aria-expanded="false">
<img class="user-img" src="./assets/images/user.png" alt="user">
<span class="user-first-name">Shahriar</span>
</button>
<ul class="dropdown-menu">
<li><a class="dropdown-item" href="PublicProfile.html">profile</a></li>
<li>
<hr class="dropdown-divider">
</li>
<li>
<a type="button" class="btn dropdown-item" data-bs-toggle="modal"
data-bs-target="#staticBackdrop">
Log Out
</a>
</li>
</ul>
<!-- Log out Popup -->
<div class="modal fade" id="staticBackdrop" data-bs-backdrop="static"
data-bs-keyboard="false" tabindex="-1" aria-labelledby="staticBackdropLabel"
aria-hidden="true">
<div class="modal-dialog">
<div class="modal-content modal-wrapper border-0">
<div class="modal-top">
<i class="danger-icon fas fa-exclamation-triangle"></i>
<div>
<h5 class="modal-heading">Log out from this session</h5>
<p class="modal-description">Are you sure you want to log out? All of
your data
will be temporary
removed. You have to sign in again.</p>
</div>
</div>
<div class="modal-bottom">
<button type="button" class="btn btn-outline-primary mx-3"
data-bs-dismiss="modal">Cancel</button>
<a href="http://">
<button type="button" class="btn btn-custom-danger">
Log out
</button>
</a>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</nav>
</div>
</div>
<!-- Navbar-End -->
<!-- Start: Lista Productos Canito -->
<div style="margin-top:0px;">
<div class="container">
<div class="row">
<div class="col-md-4">
<img src="./assets/images/searching-data.png" class="img-fluid" alt="Responsive image">
</div>
<div class="col d-xl-flex justify-content-xl-center">
<span class="text-center search_txt">Doctor List</span>
<!-- <form method="post" action="#"> -->
<form action="#" class="search-bar">
<input id="myInput" type="search" name="search" pattern=".*\S.*" required>
<button class="search-btn" type="submit">
<span>Search</span>
</button>
</form>
</div>
</form>
</div>
</div>
<section>
<div class="container">
<div class="col-12">
<!-- Start: Data Table -->
<table id="example" class="table table-striped table-bordered" cellspacing="0" width=100%><br>
<thead>
<tr class="Table_row">
<th>Doctor Name</th>
<th>Doctor Designation</th>
<th>Doctor Speciality</th>
<th>Hospital Name</th>
</tr>
</thead>
<tbody id="myTable">
<!-- for loop start -->
<tr class="Table_row_2">
<td>Ashraf Sabbir Shafin</td>
<td>Pro Player Ultra max HD </td>
<td>Coder Losser Sleeper</td>
<td>Lorem ipsum dolor sit.</td>
</tr>
<tr>
<td>Square hospital </td>
<td>01855525808</td>
<td>Jatrabari</td>
<td>Lorem ipsum, dolor sit amet consectetur adipisicing elit. Vitae quasi tempora quae
eligendi, qui laudantium! Animi magni voluptate modi doloribus!</td>
</tr>
<tr>
<td>Square hospital </td>
<td>01855525808</td>
<td>Jatrabari</td>
<td>Lorem ipsum, dolor sit amet consectetur adipisicing elit. Vitae quasi tempora quae
eligendi, qui laudantium! Animi magni voluptate modi doloribus!</td>
</tr>
<tr>
<td>Square hospital </td>
<td>01800025808</td>
<td>Jatrabari</td>
<td>Lorem ipsum, dolor sit amet consectetur adipisicing elit. Vitae quasi tempora quae
eligendi, qui laudantium! Animi magni voluptate modi doloribus!</td>
</tr>
<tr>
<td>Square hospital </td>
<td>01955525808</td>
<td>Jatrabari</td>
<td>Lorem ipsum, dolor sit amet consectetur adipisicing elit. Vitae quasi tempora quae
eligendi, qui laudantium! Animi magni voluptate modi doloribus!</td>
</tr>
<!-- for loop end -->
</tbody>
</table><!-- End: Data Table -->
</div>
</div>
</div>
</section>
<!-- footer start -->
<footer class="footer">
<div class="container">
<div class="row">
<div class="col-lg-3 col-md-6 col-sm-12">
<div class="footer-about">
<div class="footer-logo">
<a href="index.html"><img src="./assets/images/logo-white.svg" alt=""></a>
</div>
<p>E-Health Care is a dream that turned into a tech based startup, a business with a great
purpose to create positive impacts in peoples' lives.</p>
<!-- Add Social Icon -->
<div>
<a href="example.com" target="_blank"><span class="social-icons"><i class="fab fa-facebook"
style="color:#30629d;"></i></span></a>
<a href="example.com" target="_blank"><span class="social-icons"><i class="fab fa-twitter"
style="color:#00A7E6;"></i></span></a>
<a href="example.com" target="_blank"><span class="social-icons"><i class="fab fa-linkedin"
style="color:#0073B1;"></i></span></a>
<a href="example.com" target="_blank"><span class="social-icons"><i class="fab fa-instagram"
style="color:#D32C86;"></i></span></a>
</div>
</div>
</div>
<div class="col-lg-3 offset-lg-1 col-md-3 col-6">
<div class="footer-widget">
<h6>Information</h6>
<ul>
<li><a href="#">About Us</a></li>
<li><a href="#">Contact Us</a></li>
<li><a href="#">E-Sheba</a></li>
<li><a href="#">Doctor Protal</a></li>
</ul>
</div>
</div>
<div class="col-lg-3 col-md-3 col-6">
<div class="footer-widget">
<h6>Quick Link</h6>
<ul>
<li><a href="#">FAQs</a></li>
<li><a href="#">My Account</a></li>
<li><a href="#">Careers</a></li>
<li><a href="#">Notice</a></li>
</ul>
</div>
</div>
<div class="col-lg-2 col-md-12 col">
<div class="footer-widget">
<h6>Important</h6>
<ul>
<li><a href="#">e-Sastho Premium</a></li>
<li><a href="#">e-Sastho Plus</a></li>
<li><a href="#">Senior Citizen Care</a></li>
<li><a href="#">Personal & Family Care</a></li>
</ul>
</div>
</div>
</div>
<div class="row">
<div class="col-lg-12 text-center">
<div class="footer-copyright-text">
<p>© Copyright <script>
document.write(new Date().getFullYear());
</script> | <a href="index.html"> E-Health Care </a> | All Rights Reserved</p>
</div>
</div>
</div>
</div>
</footer>
<!-- footer end -->
<!-- Bootstrap Bundle with Popper -->
<script src="https://cdn.jsdelivr.net/npm/bootstrap@5.0.2/dist/js/bootstrap.bundle.min.js"
integrity="sha384-MrcW6ZMFYlzcLA8Nl+NtUVF0sA7MsXsP1UyJoMp4YLEuNSfAP+JcXn/tWtIaxVXM" crossorigin="anonymous">
</script>
</body>
</html>