-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcancel_booked_tickets_success.php
46 lines (46 loc) · 1.6 KB
/
cancel_booked_tickets_success.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
<?php
session_start();
?>
<html>
<head>
<title>
Cancel Booked Tickets
</title>
<style>
input {
border: 1.5px solid #030337;
border-radius: 4px;
padding: 7px 30px;
}
input[type=submit] {
background-color: #030337;
color: white;
border-radius: 4px;
padding: 7px 45px;
margin: 0px 68px
}
</style>
<link rel="stylesheet" type="text/css" href="css/style.css"/>
<link rel="stylesheet" href="font-awesome-4.7.0\css\font-awesome.min.css">
</head>
<body>
<img class="logo" src="images/railogo.png"/>
<h1 id="title" style="color: navy;">
IRCTC
</h1>
<div>
<ul>
<li><a href="home_page.php"><i class="fa fa-home" aria-hidden="true"></i> Home</a></li>
<li><a href="customer_homepage.php"><i class="fa fa-desktop" aria-hidden="true"></i> Dashboard</a></li>
<li><a href="home_page.php"><i class="fa fa-plane" aria-hidden="true"></i> About Us</a></li>
<li><a href="home_page.php"><i class="fa fa-phone" aria-hidden="true"></i> Contact Us</a></li>
<li><a href="logout_handler.php"><i class="fa fa-sign-out" aria-hidden="true"></i> Logout</a></li>
</ul>
</div>
<fieldset style="margin: 50px; background-color:#ffcccb;">
<legend><h2>CANCELLATION DETAILS <i class="fa fa-ban"></i></h2></legend>
<h3 style='padding-left: 40px;'>Your ticket has been cancelled successfully.<br><br>Your amount of ₹ <?php echo $_SESSION['refund_amount']?> will be refunded to your bank account <br><h5 style="margin-left: 50px;"> **(Cancellation charge on 15% of your ticket amount has been deducted).</h5></td>
</h3>
<br>
</body>
</html>