-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathlend_book.php
More file actions
38 lines (30 loc) · 954 Bytes
/
lend_book.php
File metadata and controls
38 lines (30 loc) · 954 Bytes
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
<html>
<head>
<link rel="stylesheet" href="style.css">
</head>
<body>
<h4>Lending a book</h4>
<h5>Enter the date</h5>
<!-- search boxes -->
<form method="post" action="lend_book_results.php">
<div class="search-box">
<p>
<input type="date" placeholder="Enter today's date" class="inputBox" name="date" required />
<br>
<h5>Enter the ISBN of the book being lent</h5>
<input type="text" placeholder="Enter a valid ISBN" class="inputBox" name="isbn" required/>
<br>
<h5>Enter the member ID of the person borrowing the book</h5>
<input type="text" placeholder="Enter valid member ID" class="inputBox" name = "memberid" required />
<br>
<br>
<input type="submit" name="go" value="Submit" class="clickButton" />
</p>
</div>
</form>
<br>
<form action="index.php">
<input type="submit" value="Return Home" class="clickButton"/>
</form>
</body>
</html>