-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpayment.php
More file actions
37 lines (35 loc) · 1.06 KB
/
payment.php
File metadata and controls
37 lines (35 loc) · 1.06 KB
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
<?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>Payment Option</h2>
<a href="paymentoffline.php">Offline Payment</a>
<a href="paymentonline.php">Online Payment</a>
</div>
<div class="back">
<a href="cart.php">Previous</a>
</div>
</div>
</div>
</div>
<?php
include 'inc/footer.php';
?>