-
Notifications
You must be signed in to change notification settings - Fork 1
/
checkout.php
executable file
·55 lines (34 loc) · 1.41 KB
/
checkout.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
47
48
49
50
51
52
53
54
55
<?php
$active='Account';
include("includes/header.php");
?>
<div id="content"><!-- #content Begin -->
<div class="container"><!-- container Begin -->
<div class="col-md-12"><!-- col-md-12 Begin -->
<ul class="breadcrumb"><!-- breadcrumb Begin -->
<li>
<a href="index.php">Home</a>
</li>
<li>
Register
</li>
</ul><!-- breadcrumb Finish -->
</div><!-- col-md-12 Finish -->
<div class="col-md-12"><!-- col-md-12 Begin -->
<?php
if(!isset($_SESSION['customer_email'])){
include("customer/customer_login.php");
}else{
include("payment_options.php");
}
?>
</div><!-- col-md-12 Finish -->
</div><!-- container Finish -->
</div><!-- #content Finish -->
<?php
include("includes/footer.php");
?>
<script src="js/jquery-331.min.js"></script>
<script src="js/bootstrap-337.min.js"></script>
</body>
</html>