-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathcustomer.php
More file actions
82 lines (60 loc) · 3.2 KB
/
Copy pathcustomer.php
File metadata and controls
82 lines (60 loc) · 3.2 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
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
<?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 Costumers
</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 Costumers
</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> No: </th>
<th> Name: </th>
<th> Image: </th>
<th> E-Mail: </th>
<th> Country: </th>
<th> City: </th>
<th> Address: </th>
<th> Contact: </th>
<th> Delete: </th>
</tr><!-- tr finish -->
</thead><!-- thead finish -->
<tbody><!-- tbody begin -->
<tr><!-- tr begin -->
<td> </td>
<td> </td>
<td> </td>
<td> </td>
<td></td>
<td> </td>
<td> </td>
<td> </td>
<td> </td>
</tr><!-- tr finish -->
</tbody><!-- tbody 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 } ?>