-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCheckin_Checkout.html
More file actions
73 lines (60 loc) · 2.33 KB
/
Checkin_Checkout.html
File metadata and controls
73 lines (60 loc) · 2.33 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
<html>
<head> <center> <h1>Library Management System</h1> </center>
<link rel="stylesheet" type="text/css" href="style.css">
<title> Library Management System </title>
</head>
<body>
<form name="check" method="post" action="search.php">
<h1> <center> Check_Out </center> </h1>
<center><table cellspacing="5">
<tr>
<td>Book Id: </td>
<td><input type="text" name="bookid" id="bookid"/> </td>
</tr>
<tr>
<td>Branch ID: </td>
<td> <input type="text" name="branchid" id="branchid"/> </td>
</tr>
<tr>
<td> Card No.: </td>
<td> <input type="text" name="card" id="card"/></td>
</tr>
<tr>
<td></td>
<td> <input type="submit" value="CheckOut"/></td>
</tr>
</table></center>
<br><br>
<h1> <center> Check_In </center> </h1>
<center><table cellspacing="5">
<tr>
<td>Book Id: </td>
<td><input type="text" name="bookid" id="bookid"/> </td>
</tr>
<tr>
<td>Card No.: </td>
<td> <input type="text" name="branchid" id="branchid"/> </td>
</tr>
<tr>
<td colspan="2"><center> Borrower Name</center> </td>
</tr>
<tr>
<td>First Name: </td>
<td> <input type="text" name="branchid" id="branchid"/> </td>
</tr>
<tr>
<td>Middle Name: </td>
<td> <input type="text" name="branchid" id="branchid"/> </td>
</tr>
<tr>
<td>Last Name: </td>
<td> <input type="text" name="branchid" id="branchid"/> </td>
</tr>
<tr>
<td></td>
<td> <input type="submit" value="CheckOut"/></td>
</tr>
</table></center>
</form>
</body>
</html>