-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathbook_request.html
More file actions
153 lines (139 loc) · 6.91 KB
/
Copy pathbook_request.html
File metadata and controls
153 lines (139 loc) · 6.91 KB
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
<!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 class="row">
<div class="col-lg-6 col-md-6 ml-auto mr-auto">
<div class="card">
<form class="form" id="request-form-container">
<div class="card-header card-header-primary text-center">
<h4 class="card-title">BOOK REQUEST</h4>
</div>
<div class="card-body">
<p class="description text-center mt-1">Enter the Title and Author of the Book you want to request</p>
<div class="input-group mb-4 mt-4">
<div class="input-group-prepend">
<span class="input-group-text">
<i class="material-icons">auto_stories</i>
</span>
</div>
<input type="name" id="request-title" class="form-control" placeholder="Title...">
</div>
<div class="input-group mb-2">
<div class="input-group-prepend">
<span class="input-group-text">
<i class="material-icons">create</i>
</span>
</div>
<input type="name" id="request-author" class="form-control" placeholder="Author...">
</div>
</div>
<div class="footer text-center">
<a id="book-request-button" class="btn btn-primary btn-wd btn-lg mb-3">Request</a>
</div>
</form>
</div>
</div>
</div>
</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>
<!-- Google Maps Plugin -->
<!-- <script type="text/javascript" src="https://maps.googleapis.com/maps/api/js?key=YOUR_KEY_HERE"></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 -->
<script src="src/book-request.js" type="text/javascript"></script>
</body>
</html>