-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathheader.php
151 lines (136 loc) · 5.98 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
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=Edge">
<meta content="width=device-width, initial-scale=1, maximum-scale=1, user-scalable=no" name="viewport">
<title>LIBRARY AUTOMATION</title>
<!-- Favicon-->
<link rel="icon" href="favicon.ico" type="image/x-icon">
<!-- Google Fonts -->
<link href="https://fonts.googleapis.com/css?family=Roboto:400,700&subset=latin,cyrillic-ext" rel="stylesheet" type="text/css">
<link href="https://fonts.googleapis.com/icon?family=Material+Icons" rel="stylesheet" type="text/css">
<!-- Bootstrap Core Css -->
<link href="plugins/bootstrap/css/bootstrap.css" rel="stylesheet">
<!-- Waves Effect Css -->
<link href="plugins/node-waves/waves.css" rel="stylesheet" />
<!-- Animation Css -->
<link href="plugins/animate-css/animate.css" rel="stylesheet" />
<!-- Morris Chart Css-->
<link href="plugins/morrisjs/morris.css" rel="stylesheet" />
<!-- Data Tables Css -->
<!-- <link rel="stylesheet" type="text/css" href="DataTables/datatables.min.css"/> -->
<!-- Data Tables JS -->
<!-- <script type="text/javascript" src="DataTables/datatables.min.js"></script> -->
<!-- -->
<link rel="stylesheet" type="text/css" href="https://cdn.datatables.net/v/dt/dt-1.10.18/datatables.min.css"/>
<!-- -->
<!-- Custom Css -->
<link href="css/style.css" rel="stylesheet">
<!-- AdminBSB Themes. You can choose a theme from css/themes instead of get all themes -->
<link href="css/themes/all-themes.css" rel="stylesheet" />
</head>
<body class="theme-red">
<!-- Top Bar -->
<nav class="navbar">
<div class="container-fluid">
<div class="navbar-header">
<a class="navbar-brand" href="index.html">ADMIN PANEL</a>
</div>
<div class="collapse navbar-collapse" id="navbar-collapse">
<ul class="nav navbar-nav navbar-right">
<li class="pull-right"><a href="javascript:void(0);" class="js-right-sidebar" data-close="true"><i class="material-icons">more_vert</i></a></li>
</ul>
</div>
</div>
</nav>
<!-- #Top Bar -->
<section>
<!-- Left Sidebar -->
<aside id="leftsidebar" class="sidebar">
<!-- User Info -->
<div class="user-info">
<div class="image">
<img src="images/user.png" width="48" height="48" alt="User" />
</div>
<div class="info-container">
<div class="name">Administrator</div>
</div>
</div>
<!-- #User Info -->
<!-- Menu -->
<div class="menu">
<ul class="list">
<li class="header">MAIN NAVIGATION</li>
<li class="active">
<a href="#">
<i class="material-icons">home</i>
<span>Home</span>
</a>
</li>
<li class="">
<a href="./book">
<i class="material-icons">book</i>
<span>Book</span>
</a>
</li>
<li class="">
<a href="./students">
<i class="material-icons">school</i>
<span>Students</span>
</a>
</li>
<li class="">
<a href="./issueRecords">
<i class="material-icons">list</i>
<span>Issue Records</span>
</a>
</li>
</ul>
</div>
<!-- #Menu -->
</aside>
<!-- Right Sidebar -->
<aside id="rightsidebar" class="right-sidebar">
<div class="col-lg-12 col-sm-12">
<div class="card profile-card">
<div class="profile-header"> </div>
<div class="profile-body">
<div class="image-area">
<h3 style="color: #fff;">Major Project</h3>
</div>
<div class="content-area">
<br>
<p>Team members</p>
</div>
</div>
<div class="profile-footer">
<ul>
<li>
<span>Rupendra Singh</span>
<span class="label bg-green">Designer</span>
</li>
<li>
<span>Anuj Rajak</span>
<span class="label bg-teal">Backend, Database</span>
</li>
<li>
<span>Swapnil Sahu</span>
<span class="label bg-blue">Backend, Frontend</span>
</li>
<li>
<span>Shubhan Choudhary</span>
<span class="label bg-red">Hardware</span>
</li>
</ul>
<a type="button" href="https://github.com/anujrajak/Library-Automation-Using-RFID" target="_blank" class="btn btn-info btn-block waves-effect">
<i class="material-icons">file_download</i>
<span>DOWNLOAD PROJECT</span>
</a>
</div>
</div>
</div>
<p class="love">Hand-crafted & made with <img src="https://img.icons8.com/cotton/64/000000/novel.png"> </p>
</aside>
<!-- #END# Right Sidebar -->
</section>