-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsidebar.php
More file actions
25 lines (20 loc) · 1.12 KB
/
sidebar.php
File metadata and controls
25 lines (20 loc) · 1.12 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
<!-- Sidebar -->
<div class="sidebar" id="mySidebar">
<div class="side-header">
<img src="./assets/images/logo.png" width="120" height="120" alt="Swiss Collection">
<h5 style="margin-top:10px;">Hello, Admin</h5>
</div>
<hr style="border:1px solid; background-color:#8a7b6d; border-color:#3B3131;">
<a href="javascript:void(0)" class="closebtn" onclick="closeNav()">×</a>
<a href="./index.php" ><i class="fa fa-home"></i> Dashboard</a>
<a href="#customers" onclick="showCustomers()" ><i class="fa fa-users"></i> Customers</a>
<a href="#category" onclick="showCategory()" ><i class="fa fa-th-large"></i> Category</a>
<a href="#sizes" onclick="showSizes()" ><i class="fa fa-th"></i> Sizes</a>
<a href="#productsizes" onclick="showProductSizes()" ><i class="fa fa-th-list"></i> Product Sizes</a>
<a href="#products" onclick="showProductItems()" ><i class="fa fa-th"></i> Products</a>
<a href="#orders" onclick="showOrders()"><i class="fa fa-list"></i> Orders</a>
<!---->
</div>
<div id="main">
<button class="openbtn" onclick="openNav()"><i class="fa fa-home"></i></button>
</div>