-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdashboard_admin.php
139 lines (126 loc) · 4.9 KB
/
dashboard_admin.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
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
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
<?php
require 'connection.php';
require 'admin.php';
?>
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta name="description" content="">
<meta name="author" content="">
<link rel="shortcut icon" href="../../assets/ico/favicon.ico">
<title>Admin Dashboard</title>
<script src="jsfunc.js"></script>
<!-- Bootstrap core CSS -->
<link href="css/bootstrap.min.css" rel="stylesheet">
<!-- Custom styles for this template -->
<link href="css/dashboard.css" rel="stylesheet">
<!-- Just for debugging purposes. Don't actually copy this line! -->
<!--[if lt IE 9]><script src="../../assets/js/ie8-responsive-file-warning.js"></script><![endif]-->
<!-- HTML5 shim and Respond.js IE8 support of HTML5 elements and media queries -->
<!--[if lt IE 9]>
<script src="html5shiv.js"></script>
<script src="respond.min.js"></script>
<![endif]-->
</head>
<body>
<div class="navbar navbar-inverse navbar-fixed-top" role="navigation">
<div class="container">
<div class="navbar-header">
<button type="button" class="navbar-toggle" data-toggle="collapse" data-target=".navbar-collapse">
<span class="sr-only">Toggle navigation</span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
</button>
<a class="navbar-brand" href="#">Framepics</a>
</div>
<div class="collapse navbar-collapse">
<ul class="nav navbar-nav">
<li class="active"><a href="#"><span class="glyphicon glyphicon-home"></span></a></li>
<!-- <li><a href="cart.php"><span class="glyphicon glyphicon-shopping-cart"></span> Cart</a></li>
--> <?php
if(adloggedin()){
echo '<li><a href="logout.php"><span class="glyphicon glyphicon-off"></span> Logout</a></li>';}
else{
echo '<li><a href="login_admin.php"><span class="glyphicon glyphicon-off"></span> Login</a></li>';
}
?>
<!-- <li><a href="dashboard_admin.php"><span class="glyphicon glyphicon-user"></span></a></li>
--> </ul>
</div>
</div>
</div>
<div class="container-fluid">
<div class="row">
<div class="col-sm-3 col-md-2 sidebar">
<ul class="nav nav-sidebar">
<li class="active"><a href="#pending">Pending Orders</a></li>
<li><a href="#allOrders">All Orders</a></li>
<li><a href="admin_frame_upload.php#frameUpload">Upload Frames</a></li>
<li><a href="admin_frame_upload.php#inventory">Manage Inventory</a></li>
<li><a href="admin_inventory.php">Inventory</a></li>
</ul>
</div>
<div class="col-sm-9 col-sm-offset-3 col-md-10 col-md-offset-2 main">
<h2 class="sub-header" id="pending"><span lang="en-in">Pending Orders</span></h2>
<div class="table-responsive">
<table class="table table-striped">
<thead>
<tr>
<th>Order ID</th>
<th>Frame ID</th>
<th>Frame Color</th>
<th>Mount ID</th>
<th>Mount Color</th>
<th>Status</th>
<th>Delivered On</th>
<th>Price</th>
<th>Recipient's Address</th>
</tr>
</thead>
<tbody id="tabOrder">
<?php
// require 'admin_order.php';
require 'admin_pending.php';
?>
</tbody>
</table>
</div>
<h2 class="sub-header" id="allOrders"><span lang="en-in">All Orders</span></h2>
<div class="table-responsive">
<table class="table table-striped">
<thead>
<tr>
<th>Order ID</th>
<th>Frame ID</th>
<th>Frame Color</th>
<th>Mount ID</th>
<th>Mount Color</th>
<th>Status</th>
<th>Delivered On</th>
<th>Price</th>
<th>Recipient's Address</th>
</tr>
</thead>
<tbody id="tabOrder">
<?php
require 'admin_order.php';
// require 'admin_pending.php';
?>
</tbody>
</table>
</div>
</div>
</div>
</div>
<!-- Bootstrap core JavaScript
================================================== -->
<!-- Placed at the end of the document so the pages load faster -->
<script src="jquery.min.js"></script>
<script src="../../dist/js/bootstrap.min.js"></script>
<script src="../../assets/js/docs.min.js"></script>
</body>
</html>