-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
38 lines (38 loc) · 1005 Bytes
/
index.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Title</title>
</head>
<body>
<form id="bookadd" action="" method="POST">
<table>
<tr>
<td>Tytuł*:<input name="title" id="title"></td>
</tr>
<tr>
<td>Autor*:<input name="author" id="author"></td>
</tr>
<tr>
<td>Wydawca*:<input name="publisher" id="publisher"></td>
</tr>
<tr>
<td>ISBN*:<input name="isbn" id="isbn"></td>
</tr>
<tr>
<td>Rodzaj(1-7)*:<input name="genre" id="genre"></td>
</tr>
<tr>
<td>*Pola wymagane</td>
</tr>
</table>
<p><input type="submit" id="submit" value="Dodaj nową książkę"></p>
</form>
<p>
<!--<div id="test">123</div>-->
<!--<div id="test2">123</div>-->
<div id="test3"></div>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.3.1/jquery.min.js"></script>
<script src="js/app2.js"></script>
</body>
</html>