-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathaddnewitem.html
28 lines (28 loc) · 913 Bytes
/
addnewitem.html
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Add a new item</title>
</head>
<body>
<fieldset>
<legend>Add a new item</legend>
<form action="additem.php">
<h3>Enter name:</h3>
<input type="text" placeholder="Name" id="name" required/>
<h3>Select the date you are adding this item:</h3>
<input type="date" id="date" required/>
<h3>ISBN:</h3>
<input type="checkbox" id="genqrcode"/>
<label for="genqrcode">Generate a QR code instead of ISBN</label>
<br><br>
<input type="text" id="isbn" placeholder="ISBN (Optional)"/>
<br><br>
<input type="submit" value="Submit"/>
<a href="http://127.0.0.1:8000/">
<input type="button" value="Go back">
</a>
</form>
</fieldset>
</body>
</html>