-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathall_patients.php
More file actions
95 lines (84 loc) · 2.73 KB
/
all_patients.php
File metadata and controls
95 lines (84 loc) · 2.73 KB
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
<?php
//include_once 'connection/checkUser.php';
include_once 'parts/header.php';
?>
<body>
<div id="wrapper">
<?php include_once 'parts/nav.php'; ?>
<!-- Page Content -->
<div id="page-wrapper">
<div class="container-fluid">
<div class="row">
<div class="col-lg-12">
<h1 class="page-header">All Patients</h1>
</div>
<!-- /.col-lg-12 -->
</div>
<!-- /.row -->
</div>
<div class="panel panel-default">
<div class="panel-heading">Patients</div>
<!-- /.panel-heading -->
<div class="panel-body">
<div class="table-responsive">
Avi Avi
<table class="table table-striped table-bordered table-hover">
<thead>
<tr>
<th>Parameter</th>
<th>1:00</th>
<th>1:30</th>
</tr>
</thead>
<tbody>
<tr>
<td>BP</td>
<td>135/80</td>
<td>120/62</td>
</tr>
<tr>
<td>H2O</td>
<td>71</td>
<td>65</td>
</tr>
</tbody>
</table>
</div>
<!-- /.table-responsive -->
<div class="table-responsive">
Israel Israel
<table class="table table-striped table-bordered table-hover">
<thead>
<tr>
<th>Parameter</th>
<th>1:00</th>
<th>1:30</th>
</tr>
</thead>
<tbody>
<tr>
<td>BP</td>
<td>120/60</td>
<td>140/80</td>
</tr>
<tr>
<td>H2O</td>
<td>71</td>
<td>65</td>
</tr>
</tbody>
</table>
</div>
<!-- /.table-responsive -->
</div>
<!-- /.panel-body -->
</div>
</div>
<!-- /.container-fluid -->
</div>
<!-- /#page-wrapper -->
</div>
<!-- /#wrapper -->
<?php include_once 'parts/bottom.php'; ?>
</body>
</html>