-
Notifications
You must be signed in to change notification settings - Fork 0
/
sapptschdl.html
152 lines (140 loc) · 6.04 KB
/
sapptschdl.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
<!DOCTYPE html>
<html>
<head>
<script>
function saved(){
alert("Schedule Saved succesfully")
}
</script>
<link rel="stylesheet" href="css/all.min.css">
<link rel="stylesheet" href="css/fontawesome.min.css">
<link rel="stylesheet" href="style2.css">
<link rel="stylesheet" href="dropdown.css">
<link rel="stylesheet" href="login_css.css">
<style>
table,td,th{border: 1px solid black;}
.center
{
text-align: center;
list-style-position: inside;
}
ol.center li
{
text-align: left;
margin-left: 43%;
}
.middle{
text-align: center;
list-style-position: inside;
}
ul.middle li{
text-align: left;
margin-left: 43%;
}
</style>
<title>
Appointment Schedule||Abstergo
</title>
<link rel="icon" type="image/ico" href="ab.ico">
</head>
<body style="background-image: url(12.png);">
<div class="top">
<a href="stindex.html">
<img src="ab.png" width="auto" height="60px" class="align" style="display: block; margin-left: auto;margin-right: auto;">
</a>
</div>
<div class="topnav">
<a href="stindex.html"><i class="fas fa-home"></i> Home</a>
<!--- <div class="float">-->
<div class="dropdown" style="float: right;">
<button class="dropbtn"> Profile
<i class="fas fa-user-circle"></i>
<i class="fa fa-caret-down"></i>
</button>
<div class="dropdown-content">
<a href="sloginuser.html"><i class="fas fa-portrait"></i> My Profile</a>
<a href="index.html"><i class="fas fa-sign-in-alt"></i> Log Out</a>
</div>
</div>
<a href="sapptschdl.html"><i class="far fa-calendar-alt"></i> Appointment Schedule</a>
<a href="sloginuser.html"><i class="fas fa-address-book"></i> Dashboard</a>
</div>
<center>
<div style="background-color: white; width: 95%; height: 85%;">
<h1 style="text-align: left;">Appointment Schedule</h1>
<p style="text-align: left;">
Here are the Available Appointments for Today
</p>
<table align="center">
<tbody>
<tr>
<th colspan="4">MORNING SCHEDULE</th>
</tr>
<tr>
<th>TIME</th>
<th>DOCTOR NAME</th>
<th>NOTES</th>
<th>NUMBER OF PATIENTS</th>
</tr>
<tr>
<td>7:00am-10:00am</td>
<td>Dr. Melanie Lemay</td>
<td>Padieatric,Child treatment</td>
<td>5</td>
</tr>
<tr>
<td>7:00am-10:00am</td>
<td>Vacant</td>
<td>Test Collection, Surgical Operations</td>
<td>12</td>
</tr>
<tr>
<td>11:00am-11:50am</td>
<td>Vacant</td>
<td>Ward Duty,Diagnostics</td>
<td>20</td>
</tr>
<tr>
<td>11:00am-11:50am</td>
<td>Dr. Edward Kenway</td>
<td>Consultation</td>
<td>10</td>
</tr>
<tr>
<th colspan="4">AFTERNOON SCHEDULE</th>
</tr>
<tr>
<th>TIME</th>
<th>DOCTOR NAME</th>
<th>NOTES</th>
<th>NUMBER OF PATIENTS</th>
</tr>
<tr>
<td>12:00pm-1:00pm</td>
<td>Dr. Àltäir bn La'Ahad</td>
<td>Padieatric,Child treatment</td>
<td>15</td>
</tr>
<tr>
<td>1:00pm-2:00pm</td>
<td>Dr. John Price</td>
<td>Sample Collection</td>
<td>12</td>
</tr>
<tr>
<td>3:00pm-3:30pm</td>
<td>Dr. Umar Hassan</td>
<td>Consultation</td>
<td>13</td>
</tr>
<tr>
<td>4:00pm-5:50pm</td>
<td>Vacant</td>
<td>Test Collection, Surgical Operations</td>
<td>10</td>
</tr>
</tbody></table>
</center>
</div>
</body>
</html>