File: /home/rtbrisc/public_html/admin/main/helpdesk/payment/error.php
<?php
session_start();
$email = $_GET['email'];
?>
<!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">Oops! <?php echo $email; ?></h2>
<hr />
<p> Your Payment was not successfull, Please contact our customer care </p>
<a href="https://qis-nigeria.com" class="btn btn-block btn-primary">Proceed to Main Site</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>