-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpayment.php
47 lines (46 loc) · 1.28 KB
/
payment.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
<?php
require_once('page_framework/header.php');
require_once('utility/account.php');
if(!isLoggedIn())
{
header("index_working.php");
}
?>
<html>
<head>
<title></title>
</head>
<body>
<div class="container">
<? include 'page_framework/nav.php'; ?>
<div class="well well-large">
<div class="tabbable">
<!-- Only required for left/right tabs -->
<ul class="nav nav-pills">
<!-- <li>
<a href="#">Profile Settings</a>
</li>-->
<li class="active">
<a href="#payment" data-toggle="tab">Payment</a>
</li>
</ul>
<div class="tab-content">
<div class="tab-pane" id="profile">
<h4 class="text-info">Profile</h4>
<div class="well well-small">
<?include_once('widget/profile_settings.php');?>
</div>
</div>
<div class="tab-pane active" id="payment">
<div class="row-fluid">
<?include_once('widget/payment_ability.php');?>
<?include_once('widget/paypal.php');?>
<?include_once('widget/stripe.php');?>
</div>
</div>
</div>
</div>
</div><?include_once('page_framework/footer.php');?>
</div>
</body>
</html>