-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsearch.php
50 lines (48 loc) · 2.19 KB
/
search.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
<html lang="en">
<head>
<meta charset="utf-8">
<link href="style.css" rel="stylesheet">
<title>671BookStore</title>
<script type='text/javascript' src="scripts.js"></script>
</head>
<body onload="showMenu()">
<h1>
671 BookStore
</h1>
<div class = "menu" style="margin-bottom: 2em;">
<center>
<a href=".">Home</a>
<a href="books.php">Books</a>
<a href="search.php">Search</a>
<a id="signin" style='display:none' href="sign_in.php">Sign in</a>
<a id="register" style='display:none' href="register.php">Register</a>
<a id="myaccount" style='display:none' href="myaccount.php">My Account</a>
<a id="admin" style='display:none' href="admin.php">Admin</a>
<a id="signout" style='display:none' onclick="signout()" href="index.php">Sign Out</a>
</center>
</div>
<form action="books.php" method="POST">
<table class="responstable">
<tr>
<td><section class='const'>Book Name</section></td>
<td><input type="text" name="Book" style="width:100%"></td>
</tr>
<tr>
<td><section class='const'>Author Name</section></td>
<td><input type="text" name="Author" style="width:100%"></td>
</tr>
<tr>
<td><section class='const'>Year From</section></td>
<td><input type="text" name="YFrom" pattern="[0-9]{4}" title="Year should be 4 digits." style="width:100%"></td>
</tr>
<tr>
<td><section class='const'>Year To</section></td>
<td><input type="text" name="YTo" pattern="[0-9]{4}" title="Year should be 4 digits." style="width:100%"></td>
</tr>
</table>
<center>
<input type="submit" name="Search" value="Search" class='bookinput'>
</center>
</form>
</body>
</html>