-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathheader.php
175 lines (146 loc) · 6.16 KB
/
header.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
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
<?php
//check login
include("session.php");
?>
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<title>Invoice Management System</title>
<!-- Tell the browser to be responsive to screen width -->
<meta content="width=device-width, initial-scale=1, maximum-scale=1, user-scalable=no" name="viewport">
<!-- Font Awesome -->
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.5.0/css/font-awesome.min.css">
<!-- Ionicons -->
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/ionicons/2.0.1/css/ionicons.min.css">
<!-- Theme style -->
<link rel="stylesheet" href="css/AdminLTE.css">
<link rel="stylesheet" href="css/skin-green.css">
<!-- JS -->
<script src="//code.jquery.com/jquery-1.11.1.min.js"></script>
<script src="js/moment.js"></script>
<script src="js/bootstrap.min.js"></script>
<script src="//cdn.datatables.net/1.10.7/js/jquery.dataTables.js"></script>
<script src="//cdn.datatables.net/plug-ins/1.10.7/integration/bootstrap/3/dataTables.bootstrap.js"></script>
<script src="js/bootstrap.datetime.js"></script>
<script src="js/bootstrap.password.js"></script>
<script src="js/scripts.js"></script>
<!-- AdminLTE App -->
<script src="js/app.min.js"></script>
<!-- CSS -->
<link rel="stylesheet" href="css/bootstrap.min.css">
<link rel="stylesheet" href="css/bootstrap.datetimepicker.css">
<link rel="stylesheet" href="//cdn.datatables.net/1.10.7/css/jquery.dataTables.css">
<link rel="stylesheet" href="//cdn.datatables.net/plug-ins/1.10.7/integration/bootstrap/3/dataTables.bootstrap.css">
<link rel="stylesheet" href="css/styles.css">
</head>
<body class="hold-transition skin-green sidebar-mini">
<div class="wrapper">
<!-- Main Header -->
<header class="main-header">
<!--Logo -->
<a href="" class="logo">
<!--mini logo for sidebar mini 50x50 pixels -->
<span class="logo-mini"><b>IN</b>MS</span>
<!--logo for regular state and mobile devices -->
<span style="text-decoration:none;" class="logo-lg"><b>Invoice</b> System</span>
</a>
<!-- Header Navbar -->
<nav class="navbar navbar-static-top" role="navigation">
<!-- Sidebar toggle button-->
<a href="#" class="sidebar-toggle" data-toggle="offcanvas" role="button">
<span class="sr-only">Toggle navigation</span>
</a>
<!-- Navbar Right Menu -->
<div class="navbar-custom-menu">
<ul class="nav navbar-nav">
<!-- User Account Menu -->
<li class="dropdown user user-menu">
<!-- Menu Toggle Button -->
<a href="#" class="dropdown-toggle" data-toggle="dropdown">
<!-- The user image in the navbar-->
<img src="https://pcrt.crab.org/images/default-user.png" class="user-image" alt="User Image">
<!-- hidden-xs hides the username on small devices so only the image appears. -->
<span class="hidden-xs"><?php echo $_SESSION['login_username'];?></span>
</a>
<ul class="dropdown-menu">
<!-- Drop down list-->
<li><a href="logout.php" class="btn btn-default btn-flat">Log out</a></li>
</ul>
</li>
</ul>
</div>
</nav>
</header>
<!-- Left side column. contains the logo and sidebar -->
<aside class="main-sidebar">
<!-- sidebar: style can be found in sidebar.less -->
<section class="sidebar">
<!-- Sidebar Menu -->
<ul class="sidebar-menu">
<li class="header">MENU</li>
<!-- Menu 0.1 -->
<li class="treeview">
<a href="dashboard.php"><i class="fa fa-tachometer"></i> <span>Dashboard</span>
</a>
</li>
<!-- Menu 1 -->
<li class="treeview">
<a href="#"><i class="fa fa-file-text"></i> <span>Invoices</span>
<span class="pull-right-container">
<i class="fa fa-angle-left pull-right"></i>
</span>
</a>
<ul class="treeview-menu">
<li><a href="invoice-create.php"><i class="fa fa-plus"></i>Create Invoice</a></li>
<li><a href="invoice-list.php"><i class="fa fa-cog"></i>Manage Invoices</a></li>
<li><a href="#" class="download-csv"><i class="fa fa-download"></i>Download CSV</a></li>
</ul>
</li>
<!-- Menu 2 -->
<li class="treeview">
<a href="#"><i class="fa fa-archive"></i><span>Products</span>
<span class="pull-right-container">
<i class="fa fa-angle-left pull-right"></i>
</span>
</a>
<ul class="treeview-menu">
<li><a href="product-add.php"><i class="fa fa-plus"></i>Add Products</a></li>
<li><a href="product-list.php"><i class="fa fa-cog"></i>Manage Products</a></li>
</ul>
</li>
<!-- Menu 3 -->
<li class="treeview">
<a href="#"><i class="fa fa-users"></i><span>Customers</span>
<span class="pull-right-container">
<i class="fa fa-angle-left pull-right"></i>
</span>
</a>
<ul class="treeview-menu">
<li><a href="customer-add.php"><i class="fa fa-user-plus"></i>Add Customer</a></li>
<li><a href="customer-list.php"><i class="fa fa-cog"></i>Manage Customers</a></li>
</ul>
</li>
<!-- Menu 4 -->
<li class="treeview">
<a href="#"><i class="fa fa-user"></i><span>System Users</span>
<span class="pull-right-container">
<i class="fa fa-angle-left pull-right"></i>
</span>
</a>
<ul class="treeview-menu">
<li><a href="user-add.php"><i class="fa fa-plus"></i>Add User</a></li>
<li><a href="user-list.php"><i class="fa fa-cog"></i>Manage Users</a></li>
</ul>
</li>
</ul>
<!-- /.sidebar-menu -->
</section>
<!-- /.sidebar -->
</aside>
<!-- Content Wrapper. Contains page content -->
<div class="content-wrapper">
<!-- Main content -->
<section class="content">
<!-- Your Page Content Here -->