-
-
Notifications
You must be signed in to change notification settings - Fork 7
/
adminpanel.php
511 lines (392 loc) · 15.1 KB
/
adminpanel.php
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
<!DOCTYPE html>
<?php include("funs.php"); ?>
<html>
<head>
<title>Admin Panel</title>
<link rel = "icon" href =
"images/logo.png"
type = "image/x-icon">
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="css/sidebar.css">
<link rel="stylesheet" href="css/sections.css">
<link rel="stylesheet" href="css/adminpanelppp.css">
<link rel="stylesheet" href="css/adminpanelp.css">
<link rel="stylesheet" href="css/adminquarantine.css">
<link rel="stylesheet" href="css/adminpatients.css">
<!-- Bootstrap CSS -->
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/4.0.0-beta/css/bootstrap.min.css" integrity="sha384-/Y6pD6FV/Vv2HJnA6t+vslU6fwYXjCFtcEpHbNJ0lyAFsXTsjBbfaDjzALeQsN6M" crossorigin="anonymous">
<script src="//maxcdn.bootstrapcdn.com/bootstrap/3.3.0/js/bootstrap.min.js"></script>
<script src="//code.jquery.com/jquery-1.11.1.min.js"></script>
</head>
<body style="background: white;">
<?php require_once "sidebar.php"; ?>
<section id="admin_overview" >
<div class="container">
<div class="overviewH1">
<div class ="container">
<div class="card-body">
<div class="overviewHCard" style="background:#202124;">
<h3>Overview</h3>
</div>
</div>
</div>
</div>
<div class="border_box" style="background: white">
<div class="card-body" >
<div class="row admin_overview">
<div class="col-md-4 text-center">
<div class="row ">
<div class="col-md-2">
<div class="vl" style=" border-left: 3px solid blue;"></div>
</div>
<div class="col-md-10 text-left">
<h4>Patients</h4>
<h6>total Patients: <?php get_patient_count (); ?></h6>
<a href="viewpatients.php">Go to details</a>
</div>
</div>
</div>
<div class="col-md-4 text-center">
<div class="row ">
<div class="col-md-2 ">
<div class="vl" style=" border-left: 3px solid green;"></div>
</div>
<div class="col-md-10 text-left">
<h4>Quarantine Wards</h4>
<h6>total Quarantine:<?php get_quaratine_count (); ?></h6>
<a href="search_isolation_wards.php">Go to details</a>
</div>
</div>
</div>
<div class="col-md-4 text-center">
<div class="row ">
<div class="col-md-2 ">
<div class="vl" style=" border-left: 3px solid yellow;"></div>
</div>
<div class="col-md-10 text-left">
<h4>Isolation Wards</h4>
<h6>total Isolation: <?php get_isolation_count (); ?></h6>
<a href="search_quarantine_wards.php">Go to details</a>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</section>
<section id="admin_patients" >
<div class="container" >
<div class="patientsH1" >
<div class ="container" >
<div class="card-body">
<div class="patientsHCard" style="background:#202124;">
<h3>Patients</h3>
</div>
</div>
</div>
</div>
<div class="border_box1">
<div class="card-body" >
<div class="row">
<div class="col-md-4 text-center">
<div class="card_Design">
<span style=" font-family:cursive,sans-serif;font-style:bold;
font-size:30px; color:#67336E;">
<h4><b>Patients</b></h4>
<h4><?php get_patient_count (); ?></h4>
</span>
</div>
</div>
<div class="col-md-4 text-center">
<div class="card_Design">
<span style="color:#CC0404">
<h4><b>Deadths</b></h4>
<h4><?php recovered_count (); ?></h4>
</span>
</div>
</div>
<div class="col-md-4 text-center">
<div class="card_Design">
<span style="color:#005D66">
<h4><b>Recovered</b></h4>
<h4> <?php death_count (); ?></h4>
</span>
</div>
</div>
</div>
<!-- General info section end -->
<!-- analytical section -->
<h2 style="text-align:center;"><b>Analysis</b></h2>
<div class="row">
<div class="col-md-6">
<div class="card_Design">
<div class="card-body">
<h5 style="">Geological</h5>
<hr/>
<p>Maximum cases in City :<span style="color:#CC0404"><b> <?php get_max_patient_city (); ?></b></span></p>
<p>Minimum cases in City : <span style="color:#005D66"><b> <?php get_min_patient_city (); ?></b></span></p>
</div>
</div>
</div>
<div class="col-md-6">
<div class="card_Design">
<div class="card-body">
<h5 style="">Facts & Figures</h5>
<hr/>
<p>Average Age :<span style="color:#CC0404"><b> <?php get_avg_patient_age (); ?></b></span></p>
<p>Maximum Age :<span style="color:#CC0404"><b> <?php get_max_patient_age (); ?></b></span></p>
<p>Minimum Age: <span style="color:#005D66"><b> <?php get_min_patient_age (); ?></b></span></p>
</div>
</div>
</div>
</div>
<div class="row">
<div class="col-md-6">
<div class="card_Design">
<div class="card-body">
<h5 >Covid-19 cases</h5>
<hr/>
<p>Punjab :<span style="color:#CC0404"><b> <?php get_patient_count (); ?></b></span></p>
<p>Sindh : <span style="color:#005D66"><b> <?php get_patient_count (); ?></b></span></p>
</div>
</div>
</div>
<div class="col-md-6" >
<div class="card_Design">
<div id="chartContainer" style="height: 300px; width: 100%;"></div>
<script src="https://canvasjs.com/assets/script/canvasjs.min.js"></script>
</div>
</div>
</div>
</div>
</div>
</div>
</section>
<!-- Isolation Section Start -->
<section id="admin_isolation">
<div class="container" >
<div class="isolationH1">
<div class ="container">
<div class="card-body">
<div class="isolationHCard">
<h3>Isolation </h3>
</div>
</div>
</div>
</div>
<!-- Border start -->
<div class="border_box2" >
<div class="card-body" >
<!-- Row start -->
<div class="row">
<!-- Add hospital card start-->
<div class="col-md-4 text-center">
<div class="card_Design">
<img src="https://img.icons8.com/nolan/64/hospital.png/" style="width:50px;height:50px; align:left;">
<h4>Add Ward</h4>
<h6>total Wards:<?php get_isolation_count(); ?></h6>
<h6><a href="isolation_wards.php">Go to page</a></h6>
</div>
</div>
<!-- Add hospital card end-->
<!-- Add hospital card start-->
<div class="col-md-4 text-center">
<div class="card_Design">
<img src="https://img.icons8.com/dusk/64/000000/hospital.png" style="width:50px;height:50px; align:left;">
<h4>View and Search Wards</h4>
<h6><a href="search_isolation_wards.php">Go to page</a></h6>
</div>
</div>
<!-- Add hospital card end-->
<!-- Add hospital card start-->
<div class="col-md-4 text-center">
<div class="card_Design">
<img src="https://img.icons8.com/fluent/48/000000/hospital.png" style="width:50px;height:50px; align:left;">
<h4>Delete Ward</h4>
<h6><a href="search_isolation_wards.php">Go to page</a></h6>
</div>
</div>
<!-- Add hospital card end-->
</div>
<!-- Row end -->
<!-- Row start -->
<div class="row">
<!-- Doctors card start-->
<div class="col-md-6 text-center">
<div class="card_Design">
<img src="https://img.icons8.com/color/48/000000/doctor-male--v1.png" style="width:50px;height:50px; align:left;">
<h4>Doctors</h4>
<h6>total :<?php get_patient_count (); ?></h6>
<hr/>
<img src="https://img.icons8.com/nolan/64/hospital-room.png" style="width:50px;height:50px; align:left;">
<h4>Patients</h4>
<h6>total :<?php isolate_count (); ?></h6>
</div>
</div>
<!-- Doctors card end-->
<!-- Patients Charts card start-->
<div class="col-md-6 text-center">
<div class="card_Design">
<div id="piechart" ></div>
<script type="text/javascript" src="https://www.gstatic.com/charts/loader.js"></script>
</div>
</div>
<!-- Patients Charts card end-->
</div>
<!-- Row end -->
</div>
</div>
<!-- Border end -->
</div>
</section>
<!-- Isolation Section End -->
<!-- Quarantine Section Start -->
<section id="admin_quarantine">
<div class="container" >
<div class="quarantineH1">
<div class ="container">
<div class="card-body">
<div class="quarantineHCard">
<h3>Quarantine </h3>
</div>
</div>
</div>
</div>
<!-- Border start -->
<div class="border_box3" >
<div class="card-body" >
<!-- Row start -->
<div class="row">
<!-- Add quarantine card start-->
<div class="col-md-4 text-center">
<div class="card_Design">
<img src="https://img.icons8.com/nolan/64/hospital.png/" style="width:50px;height:50px; align:left;">
<h4>Add Ward</h4>
<h6>total Wards:<?php get_quaratine_count (); ?></h6>
<h6><a href="quarantine_wards.php">Go to page</a></h6>
</div>
</div>
<!-- Add quarantine card end-->
<!-- View quarantine card start-->
<div class="col-md-4 text-center">
<div class="card_Design">
<img src="https://img.icons8.com/nolan/64/hospital-2.png" style="width:50px;height:50px; align:left;">
<h4>View and Search Wards</h4>
<h6><a href="search_quarantine_wards.php">Go to page</a></h6>
</div>
</div>
<!-- view quarantine card end-->
<!-- del quarantine card start-->
<div class="col-md-4 text-center">
<div class="card_Design">
<img src="https://img.icons8.com/fluent/48/000000/hospital.png" style="width:50px;height:50px; align:left;">
<h4>Delete Ward</h4>
<h6><a href="search_quarantine_wards.php">Go to page</a></h6>
</div>
</div>
<!-- del quarantine card end-->
</div>
<!-- Row end -->
<!-- Row start -->
<div class="row">
<!-- Doctors card start-->
<div class="col-md-6 text-center">
<div class="card_Design">
<img src="https://img.icons8.com/color/48/000000/doctor-male--v1.png" style="width:50px;height:50px; align:left;">
<h4>Doctors</h4>
<h6>total :<?php get_patient_count (); ?></h6>
<hr/>
<img src="https://img.icons8.com/nolan/64/hospital-room.png" style="width:50px;height:50px; align:left;">
<h4>Patients</h4>
<h6>total :<?php quarantine_count (); ?></h6>
</div>
</div>
<!-- Doctors card end-->
<!-- Patients Charts card start-->
<div class="col-md-6 text-center">
<div class="card_Design">
<div id="piechart1" ></div>
<script type="text/javascript" src="https://www.gstatic.com/charts/loader.js"></script>
</div>
</div>
<!-- Patients Charts card end-->
</div>
<!-- Row end -->
</div>
</div>
<!-- Border end -->
</div>
</section>
<!-- quarantine Section End -->
<!-- Patients section js ---->
<script>
window.onload = function () {
var chart = new CanvasJS.Chart("chartContainer", {
animationEnabled: true,
theme: "light2", // "light1", "light2", "dark1", "dark2"
title: {
text: "Covid 19 cases in Pakistan"
},
axisY: {
title: "Patients",
suffix: " ",
includeZero: false
},
axisX: {
},
data: [{
type: "column",
yValueFormatString: "#,##0.0#\"\"",
dataPoints: [
{ label: "Isolate", y: <?php isolate_count (); ?> },
{ label: "Quarantine", y: <?php quarantine_count (); ?> },
{ label: "Recovered", y: <?php recovered_count (); ?> },
{ label: "Deadth", y: <?php death_count (); ?> }
]
}]
});
chart.render();
}
</script>
<script type="text/javascript">
// Load google charts
google.charts.load('current', {'packages':['corechart']});
google.charts.setOnLoadCallback(drawChart);
// Draw the chart and set the chart values
function drawChart() {
var data = google.visualization.arrayToDataTable([
['Record', 'Patients'],
['Isolate', <?php isolate_count (); ?>],
['Recovered', <?php recovered_count (); ?>],
['Death', <?php death_count (); ?>],
]);
// Optional; add a title and set the width and height of the chart
var options = {'title':'Patients Record', 'width':400, 'height':300};
// Display the chart inside the <div> element with id="piechart"
var chart = new google.visualization.PieChart(document.getElementById('piechart'));
chart.draw(data, options);
}
</script>
<script type="text/javascript">
// Load google charts
google.charts.load('current', {'packages':['corechart']});
google.charts.setOnLoadCallback(drawChart);
// Draw the chart and set the chart values
function drawChart() {
var data = google.visualization.arrayToDataTable([
['Record', 'Patients'],
['Quarantine', <?php quarantine_count (); ?>],
['Recovered', <?php recovered_count (); ?>],
['Death', <?php death_count (); ?>],
]);
// Optional; add a title and set the width and height of the chart
var options = {'title':'Patients Record', 'width':400, 'height':300};
// Display the chart inside the <div> element with id="piechart"
var chart = new google.visualization.PieChart(document.getElementById('piechart1'));
chart.draw(data, options);
}
</script>
</body>
</html>