File: /home/rtbrisc/public_html/admin/main/payment/pay/success.php
<?php
session_start();
$cid = $_GET['cid'];
$pid = $_GET['pid'];
?>
<!DOCTYPE html>
<html>
<head>
<title>Payment Status</title>
<link href="//maxcdn.bootstrapcdn.com/bootstrap/3.3.0/css/bootstrap.min.css" rel="stylesheet" id="bootstrap-css">
<style type="text/css">
.box {
background:#fff;
transition:all 0.2s ease;
border:2px dashed #dadada;
margin-top: 10px;
box-sizing: border-box;
border-radius: 5px;
background-clip: padding-box;
padding:0 20px 20px 20px;
min-height:340px;
}
.box:hover {
border:2px solid #525C7A;
}
.box span.box-title {
color: #fff;
font-size: 24px;
font-weight: 300;
text-transform: uppercase;
}
.box .box-content {
padding: 16px;
border-radius: 0 0 2px 2px;
background-clip: padding-box;
box-sizing: border-box;
}
.box .box-content p {
color:#515c66;
text-transform:none;
}
</style>
</head>
<body>
<div class="container">
<div class="row">
<h1 class="text-center">Payment Confirmation</h1>
<div class="row">
<div class="col-md-12 text-center">
<div class="box">
<div class="box-content">
<h2 class="tag-title">Congratulations <?php echo $cid; ?></h2>
<hr />
<p> Your Payment for Ticket <?php echo $pid; ?> was successfull </p>
<a href="../history.php" class="btn btn-block btn-primary">Proceed to history</a>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
<script src="//maxcdn.bootstrapcdn.com/bootstrap/3.3.0/js/bootstrap.min.js"></script>
<script src="//code.jquery.com/jquery-1.11.1.min.js"></script>
</body>
</html>