-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathtemplate.html
120 lines (103 loc) · 4.83 KB
/
template.html
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
<!doctype html>
<html lang="en">
<head>
<title>Library Management Portal</title>
<!-- Required meta tags -->
<meta charset="utf-8">
<meta content="width=device-width, initial-scale=1.0" name="viewport" />
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1" />
<!-- Fonts and icons -->
<link rel="stylesheet" type="text/css"
href="https://fonts.googleapis.com/css?family=Roboto:300,400,500,700|Roboto+Slab:400,700|Material+Icons" />
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/font-awesome/latest/css/font-awesome.min.css">
<!-- Material Kit CSS -->
<link href="assets/css/material-kit.css?v=2.0.7" rel="stylesheet" />
<!-- tiny slider-->
<link rel="stylesheet" href="assets/css/owl.carousel.min.css">
<link rel="stylesheet" href="assets/css/style.css">
</head>
<body>
<!-- Navigation Bar -->
<nav class="navbar navbar-color-on-scroll navbar-transparent fixed-top navbar-expand-lg" color-on-scroll="100">
<div class="container">
<div class="navbar-translate">
<a class="navbar-brand" href="index.html">
Library Management Portal </a>
<button class="navbar-toggler" type="button" data-toggle="collapse" aria-expanded="false"
aria-label="Toggle navigation">
<span class="sr-only">Toggle navigation</span>
<span class="navbar-toggler-icon"></span>
<span class="navbar-toggler-icon"></span>
<span class="navbar-toggler-icon"></span>
</button>
</div>
<div class="collapse navbar-collapse" id="navigation-items">
<!-- Auto filled by base.js-->
</div>
</div>
</nav>
<!-- Header -->
<div class="page-header header-filter" data-parallax="false"
style="background-image: url('images/header_background.jpg')">
<div class="container">
<div class="row">
<div class="col-md-8 ml-auto mr-auto">
<div class="card text-center">
<form class="card-body" display="inline" method="GET" action="books.html">
<div class="row">
<div class="col-md-10 col-sm-8">
<input type="text" class="form-control" placeholder="Search" id="search" name="keyword" pattern="[\s\S]*\S[\s\S]*" required>
</div>
<div class="col-md-2 col-sm-4">
<button type="submit" class="btn btn-primary btn-round inline">
<i class="material-icons">search</i>
</button>
</div>
</div>
</form>
</div>
</div>
</div>
</div>
</div>
</div>
<!-- Fixed template for all pages end here -->
<div class="main main-raised">
<div class="container">
<!-- Main code goes here -->
<div class="section text-center">
</div>
</div>
</div>
<footer class="footer footer-default">
<div class="container">
<nav class="float-left">
<ul>
<li>
<a>
Created by PJP Batch 3
</a>
</li>
</ul>
</nav>
</div>
</footer>
<!-- Core JS Files -->
<script src="assets/js/core/jquery.min.js" type="text/javascript"></script>
<script src="assets/js/core/popper.min.js" type="text/javascript"></script>
<script src="assets/js/core/bootstrap-material-design.min.js" type="text/javascript"></script>
<script src="assets/js/plugins/moment.min.js"></script>
<!-- Plugin for the Datepicker, full documentation here: https://github.com/Eonasdan/bootstrap-datetimepicker -->
<script src="assets/js/plugins/bootstrap-datetimepicker.js" type="text/javascript"></script>
<!-- Plugin for the Sliders, full documentation here: http://refreshless.com/nouislider/ -->
<script src="assets/js/plugins/nouislider.min.js" type="text/javascript"></script>
<!-- Place this tag in your head or just before your close body tag. -->
<script async defer src="https://buttons.github.io/buttons.js"></script>
<!-- Control Center for Material Kit: parallax effects, scripts for the example pages etc -->
<script src="assets/js/material-kit.js?v=2.0.7" type="text/javascript"></script>
<!-- jquery scripts -->
<!-- Compulsary script! Do not remove -->
<script src="src/base.js" type="text/javascript"></script>
<!-- Add ajax scripts here -->
</body>
</html>