-
Notifications
You must be signed in to change notification settings - Fork 52
/
cancel_room1.php
83 lines (81 loc) · 1.86 KB
/
cancel_room1.php
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
<!DOCTYPE html>
<html>
<head>
<title>Admin Cancel Booking</title>
</head>
<style>
body {
margin: 0;
background: #f2f2f2;
}
table {
font-size: 22px;
}
td {
text-align: center;
}
#td1
{
background-color: #009999;
color: white;
border: 10px;
margin-top: -10px;
padding: 10px;
}
th {
font-weight: bold;
padding-left: 15px;
}
ul {
list-style-type: none;
margin: 0;
padding: 0;
width: 22%;
font-size: 24px;
background-color: #009999;
text-decoration: none;
position: fixed;
height: 100%;
overflow: auto;
}
li {
color: white;
}
li a {
display: block;
color: white;
padding: 8px 16px;
text-decoration: none;
}
li a.active {
background-color: #e6b800;
color: white;
}
li a:hover:not(.active) {
background-color: #e6b800;
color: white;
text-decoration: underline;
}
</style>
<body>
<table style="width: 100%;">
<tr>
<td id="td1" style="padding: 10px; font-size: 48px;">THE <p style="color: #e6b800; display: inline;">DELUXE</p> HOTEL</td>
</tr>
</table>
<ul>
<li><a href="admin_view.php" class="active">Rooms Info</a></li>
<li><a href="add_room_admin.php">Add Room</a></li>
<li><a href="remove_room_admin.php">Remove Rooms</a></li>
<li><a href="admin_room_status.php">Booking Requests</a></li>
<li><a href="confirmed_bookings.php">Confirmed Bookings</a></li>
<li><a href="booking_history.php">Booking History</a></li>
<li><a href="index.php">Logout</a></li>
</ul>
<div style="margin-left:25%;padding:1px 16px;height:1000px;">
<p>Room Booking has been cancelled successfully.<br></p>
<P><br>Click Next to get redirected to home.</P>
<a href="admin_view.php" style="width: 10%; text-align: center; color: black; border: 3px solid #e6b800;">Next</a>
</div>
</body>
</html>