-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathauthorform.html
44 lines (44 loc) · 1.43 KB
/
authorform.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
<html>
<head>
<meta charset="UTF-8">
<title>Endless Lorem Ipsum</title>
</head>
<body onscroll="loremScroll()">
<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="addAuthor" method="post">
<table>
<tr>
<td>Name</td>
<td><input type="text" name="name" required="required" autofocus></td>
</tr>
<input type="submit" value="Add Authors">
<tr>
<td>Nationality</td>
<td><input type="text" name="nationality" required="required"></td>
</tr>
<tr>
<td>BirthDate</td>
<td><input type="date" name="birthDate" required="required"></td>
</tr>
</table>
</form>
</div>
</body>
</html>