-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbookform.html
65 lines (61 loc) · 2.04 KB
/
bookform.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
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
<html>
<head>
<meta charset="UTF-8">
<title>Endless Lorem Ipsum</title>
</head>
<body>
<div id="everything">
<div id="header">
<div id="banner">
<div id="menuBar">
<table width="100%">
<tr>
<td>Library</td>
<td><span class="menuButton"><a href="index.html">Home</a></span></td>
<td><span class="menuButton"><a href="bookform.html">Add Books</a></span></td>
<td><span class="menuButton"><a href="authorform.html">Add Authors</a></span></td>
<td><span class="menuButton"><a href="asd.html">asd</a></span></td>
</tr>
</table>
</div>
</div>
</div>
</div>
<div id="content">
<form action="addBook" method="post">
<table>
<tr>
<td>title</td>
<td><input type="text" name="title" required="required" autofocus> </td>
</tr>
<input type="submit" value="Add Book">
<tr>
<td>genre</td>
<td><select name="genre" required="requied">
<option value="scifi">Scifi</option>
<option value="oda">Óda</option>
</select></tr>
</td>
<tr>
<td>author</td>
<td><input type="password" name="author"></td>
</tr>
<tr>
<td>quantity</td>
<td><input type="number" name="quantity" required="required"></td>
</tr>
<tr>
<td>avaiable</td>
<td><input type="number" name="avaiable"></td>
</tr>
<tr>
<td>publisher</td>
<td><input type="email" name="publisher">
<input type="color" name="asd">
</td>
</tr>
</table>
</form>
</div>
</body>
</html>