-
Notifications
You must be signed in to change notification settings - Fork 0
/
payment.php
57 lines (39 loc) · 2.07 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
48
49
50
51
52
53
54
55
56
57
<?php
session_start();
include("includes/db.php");
if(!isset($_SESSION['admin_email'])){
echo "<script>window.open('login.php','_self')</script>";
}else{
?>
<div class="row"><!-- row 1 begin -->
<div class="col-lg-12"><!-- col-lg-12 begin -->
<ol class="breadcrumb"><!-- breadcrumb begin -->
<li class="active"><!-- active begin -->
<i class="fa fa-dashboard"></i> Dashboard / View Payments
</li><!-- active finish -->
</ol><!-- breadcrumb finish -->
</div><!-- col-lg-12 finish -->
</div><!-- row 1 finish -->
<div class="row"><!-- row 2 begin -->
<div class="col-lg-12"><!-- col-lg-12 begin -->
<div class="panel panel-default"><!-- panel panel-default begin -->
<div class="panel-heading"><!-- panel-heading begin -->
<h3 class="panel-title"><!-- panel-title begin -->
<i class="fa fa-tags"></i> View Payments
</h3><!-- panel-title finish -->
</div><!-- panel-heading finish -->
<div class="panel-body"><!-- panel-body begin -->
<div class="table-responsive"><!-- table-responsive begin -->
<table class="table table-striped table-bordered table-hover"><!-- table table-striped table-bordered table-hover begin -->
<thead><!-- thead begin -->
<tr><!-- tr begin -->
<th>Comming Soon ...</th>
</tr>
</thead><!-- thead finish -->
</table><!-- table table-striped table-bordered table-hover finish -->
</div><!-- table-responsive finish -->
</div><!-- panel-body finish -->
</div><!-- panel panel-default finish -->
</div><!-- col-lg-12 finish -->
</div><!-- row 2 finish -->
<?php } ?>