-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathindex.php
More file actions
50 lines (48 loc) · 2.19 KB
/
index.php
File metadata and controls
50 lines (48 loc) · 2.19 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
<!doctype html>
<html lang="en">
<head>
<?php include("resources/includes/head.inc.php"); ?>
<title>BookIt - KSU</title>
</head>
<body>
<?php include("resources/includes/header.inc.php"); ?>
<main class="container">
<div class="row mt-5">
<div class="col text-center">
<h3><strong>Find your next book or class</strong></h3>
</div>
</div>
<div class="row">
<div class="col text-center">
<form method="get" action="searchResults.php">
<div class="container">
<div class="row ml-auto mr-auto mt-2 w-480p">
<div class="col">
<div class="form-group">
<input type="text" class="form-control" name="search" placeholder="Search">
</div>
</div>
<div class="col-sm-auto">
<div class="form-group">
<select class="form-control" name="searchType">
<option value="courseNo">Course No.</option>
<option value="isbn">Book ISBN</option>
</select>
</div>
</div>
</div>
<div class="row mt-2">
<div class="col">
<div class="form-group">
<button type="submit" class="btn bg-orange w-160p"><strong>Search</strong></button>
</div>
</div>
</div>
</div>
</form>
</div>
</div>
</main>
<?php include("resources/includes/footer.inc.php"); ?>
</body>
</html>