-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmedication.php
More file actions
88 lines (68 loc) · 2.83 KB
/
medication.php
File metadata and controls
88 lines (68 loc) · 2.83 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
<?php include('./layouts/header.php') ?>
<div class="container-fluid">
<div class="row mt-3">
<div class="col-md-9">
<div class="d-flex justify-content-between mb-4">
<div class="ml-5">
<button onclick="goBack();" class="btn btn-outline-info">Back</button>
</div>
<div class="">
<input type="text" class="form-control " placeholder="Search ..">
</div>
</div>
<div class="row">
<div class="col-md-12">
<div class="ml-5">
<h3 class="mb-4 text-secondary">Prescription Date April 21, 2020</h3>
<table class="table table-hover table-bordered">
<thead>
<tr>
<th scope="col">Medicament Name</th>
<th scope="col">Dose</th>
<th scope="col">Duration of Use</th>
</tr>
</thead>
<tbody>
<tr>
<th>ASPIRIN</th>
<td>One pill every three hours</td>
<td>0</td>
</tr>
<tr>
<th>ADOL COLD 325MG-30MG-15MG CAPLET</th>
<td>One pill every three hours</td>
<td>7 Days</td>
</tr>
<tr>
<th>Amoxicillin + Clavulanic Acid</th>
<td>One pill every three hours</td>
<td>7 Days</td>
</tr>
<tr>
<th>ELICA-M CREAM</th>
<td>Two times a day</td>
<td>10 Days</td>
</tr>
</tbody>
</table>
</div>
</div>
</div>
</div>
<div class="pl-1 bg-success"></div>
<div class="col-md-2 mb-5">
<div class="text-center">
<img src="./assets/user.png" alt="..." class="rounded" height="90">
</div>
<div class="mt-4">
<h4 class="mb-4 text-success">Patient Information</h4>
<p>Name: Omar Abdullah</p>
<p>Age: 35</p>
<p>Gender: Male</p>
<p>Blood Type: O+</p>
<p>Chronic Disease: ...</p>
</div>
</div>
</div>
</div>
<?php include('./layouts/footer.php') ?>