-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsearch.php
More file actions
42 lines (42 loc) · 1.33 KB
/
search.php
File metadata and controls
42 lines (42 loc) · 1.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Results</title>
<style>
table, th, td {
border:1px solid black;
}
</style>
</head>
<body>
<fieldset>
<legend>Controls</legend>
<a href="http://127.0.0.1:8000/addnewitem">
<input type="button" value="Add new item"/>
</a>
<a href="http://127.0.0.1:8000/removeitem">
<input type="button" value="Remove an item"/>
</a>
<a href="http://127.0.0.1:8000/rentitem">
<input type="button" value="Mark item as rented"/>
</a>
<a href="http://127.0.0.1:8000/unrentitem">
<input type="button" value="Unmark item as rented"/>
</a>
</fieldset>
<br><hr>
<h2>Search results:</h2>
<form>
<input type="checkbox" id="item1"/>
<label for="name1">000001, Twilight, Volume 3, 5/10/2022, Yes, 3/10/2022, 10/10/2022, AGAWJK295820NGENKG</label>
<br><br><br>
<input type="submit" id="action" value="Delete selected items"/>
<input type="submit" id="action" value="Mark selected items as rented"/>
<input type="submit" id="action" value="Unmark selected items as rented"/>
<a href="http://127.0.0.1:8000/">
<input type="button" value="Go back">
</a>
</form>
</body>
</html>