forked from advancedhms/prototype
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpharm.html
More file actions
131 lines (119 loc) · 4.47 KB
/
pharm.html
File metadata and controls
131 lines (119 loc) · 4.47 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
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
<!doctype html>
<html>
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name = "viewport" content="width=device-width, initial-scale=1">
<title> Advanced Hospital Management System</title>
<link rel="stylesheet" href="css/bootstrap.min.css" />
<link rel="stylesheet" href="css/all.css"/>
<link rel="stylesheet" href="css/style.css"/>
</head>
<body>
<nav >
<ul class="nav justify-content-center">
<li class="nav-item">
<a class="nav-link active" href="#">Home</a>
</li>
<li class="nav-item">
<a class="nav-link" href="#">About</a>
</li>
</ul>
</nav>
<div class="container">
<p>logged as <b>37 Chemists</b> <button type = "submit" href="#" class="btn btn-primary">Logout</button></p>
<h2 class="text-center text-info">Dispensary Requests</h2>
<div class="table-responsive">
<table class="table table-striped">
<thead>
<tr>
<th scope="col">#</th>
<th scope="col">Drugs</th>
<th scope="col">Prescribed For</th>
<th scope="col">Prescribed By</th>
<!-- <th scope="col">Edit</th>
<th scope="col">Delete</th>-->
</tr>
</thead>
<tbody>
<tr>
<th scope="row">1</th>
<td><a href="#"><strike class="grey-text">
Chloroquine (Aralen)
Quinine sulfate (Qualaquin)
Hydroxychloroquine (Plaquenil)
Mefloquine</strike></a></td>
<td>Otto</td>
<td><a type="button" data-toggle="modal" href="#history"><b>Dr.Kwame</b></a></td>
<!--<td><a href="#"><i class="fas fa-edit"></i></a></td>
<td><a href="#" onclick = "return confirm('Delete?');"><i class="fas fa-trash"></i></a></td>-->
</tr>
<tr>
<th scope="row">2</th>
<td>
<a href="#"><p class="text-danger">
tetracycline
doxycycline
furazolidone
ciprofloxacin
</p>
</a>
</td>
<td>Thornton</td>
<td><a type="button" data-toggle="modal" href="#history"><b>Dr. Habib</b></a></td>
<!--<td><a href="#"><i class="fas fa-edit"></i></a></td>
<td><a href="#" onclick = "return confirm('Delete?');"><i class="fas fa-trash"></i></a></td>-->
</tr>
<tr>
<th scope="row">2</th>
<td>
<a href="#"><p class="">
Chloroquine (Aralen)
Quinine sulfate (Qualaquin)
Hydroxychloroquine (Plaquenil)
Mefloquine
</p>
</a>
</td>
<td>Thornton</td>
<td><a type="button" data-toggle="modal" href="#history"><b>Dr. Habib</b></a></td>
<!--<td><a href="#"><i class="fas fa-edit"></i></a></td>
<td><a href="#" onclick = "return confirm('Delete?');"><i class="fas fa-trash"></i></a></td>-->
</tr>
</tbody>
</table>
</div>
</div>
<!-- Modals Section -->
<!-- Modal for viewing Doctor's profile -->
<div class="modal fade" id="history" tabindex="-1" role="dialog" aria-labelledby="History" aria-hidden="true">
<div class="modal-dialog modal-dialog-centered" role="document">
<div class="modal-content">
</div>
<div class="modal-body">
<div class="card card-profile text-center">
<img alt="" class="card-img-top" src="images/rawpixel-593598-unsplash">
<div class="card-block">
<img alt="" class="img-thumbnail" src="images/profile.jpg">
<h4 class="card-title">
Dr. Kwame Owusu
<small>Public Health</small>
<small>37 Military Hospital</small>
</h4>
<div class="card-links">
<a class="fa fa-dribbble" href="#"><i class="fab fa-linkedin-in"></i></a>
<a class="fa fa-twitter" href="#"><i class="fab fa-twitter"></i></a>
<a class="fa fa-facebook" href="#"><i class="far fa-2x fa-comment-alt"></i></a>
<br/>
</div>
</div>
</div>
</div>
</div>
</div>
<script src="js/jquery-3.3.1.slim.min.js" ></script>
<script src="js/popper.min.js" ></script>
<script src="js/bootstrap.min.js" ></script>
<script src="js/script.js" ></script>
</body>
</html>