forked from Ratan5545/Hospital_management_system
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathroom,ward.html
123 lines (123 loc) · 3.06 KB
/
room,ward.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
<!DOCTYPE html>
<html>
<head>
<title>Hospital Management System</title>
<style>
/* CSS styling goes here */
body {
font-family: Arial, sans-serif;
background-color: #f5f5f5;
}
h1 {
text-align: center;
color: #003399;
}
table {
border-collapse: collapse;
width: 100%;
}
th, td {
padding: 8px;
text-align: left;
border-bottom: 1px solid #ddd;
}
th {
background-color: #003399;
color: #fff;
}
.button {
background-color: #003399;
border: none;
color: #fff;
padding: 8px 16px;
text-align: center;
text-decoration: none;
display: inline-block;
font-size: 14px;
margin: 4px 2px;
cursor: pointer;
}
</style>
</head>
<body>
<h1>Hospital Management System</h1>
<h2>Rooms</h2>
<table>
<thead>
<tr>
<th>ID</th>
<th>Type</th>
<th>Availability</th>
<th>Action</th>
</tr>
</thead>
<tbody>
<tr>
<td>1</td>
<td>General</td>
<td>Available</td>
<td><button class="button"><a href="treatment appointment.html" style ="color: white;
border-radius: 5px;">Book
</a><Book></td>
</tr>
<tr>
<td>2</td>
<td>ICU</td>
<td>Occupied</td>
<td><button class="button" disabled><a href="treatment appointment.html" style ="color: white;
border-radius: 5px;">Book
</a><Book></td>
</tr>
<tr>
<td>3</td>
<td>Maternity</td>
<td>Available</td>
<td><button class="button"><a href="treatment appointment.html" style ="color: white;
border-radius: 5px;">Book
</a><Book></td>
</tr>
</tbody>
</table>
<h2>Wards</h2>
<table>
<thead>
<tr>
<th>ID</th>
<th>Name</th>
<th>Type</th>
<th>Availability</th>
<th>Action</th>
</tr>
</thead>
<tbody>
<tr>
<td>1</td>
<td>General Ward</td>
<td>General</td>
<td>Available</td>
<td><button class="button"><a href="NurseWard.html" style ="color: white;
border-radius: 5px;">See Ward Details
</a><Book></td>
</tr>
<tr>
<td>2</td>
<td>Cardiology Ward</td>
<td>Specialty</td>
<td>Occupied</td>
<td><button class="button" disabled><a href="NurseWard.html" style ="color: white;
border-radius: 5px;">See Ward Details
</a><Book></td>
</tr>
<tr>
<td>3</td>
<td>Maternity Ward</td>
<td>Maternity</td>
<td>Available</td>
<td><button class="button"><a href="NurseWard.html" style ="color: white;
border-radius: 5px;">See Ward Details
</a><Book></td>
</tr>
</tbody>
</table>
</body>
</html>