-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsuccess.php
More file actions
33 lines (31 loc) · 919 Bytes
/
Copy pathsuccess.php
File metadata and controls
33 lines (31 loc) · 919 Bytes
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
<?php
include 'inc/header.php';
?>
<?php
$login = Session::get("userlogin");
if($login == false){
header("Location:login.php");
}
?>
<style>
.payment{width: 500px;min-height: 200px;text-align: center;border:1px solid #ddd;margin:0 auto;padding:50px;}
.payment h2{border-bottom: 1px solid #ddd;
margin-bottom: 40px;padding-bottom: 10px;}
.payment a{background: #ff0000 none repeat scroll 0 0;
border-radius: 3px;color:#fff;font-size: 25px;padding: 5px 30px;}
.back a{width: 160px;margin:5px auto 0;padding-bottom: 7px 0;text-align: center;display: block;
background:#555;border:1px solid #333;color: #fff;border-radius: 3px;font-size:25px;}
</style>
<div class="main">
<div class="content">
<div class="section group">
<div class="payment">
<h2>Success</h2>
<p>Payment Successful</p>
</div>
</div>
</div>
</div>
<?php
include 'inc/footer.php';
?>