-
Notifications
You must be signed in to change notification settings - Fork 1
/
index.php
47 lines (40 loc) · 1.28 KB
/
index.php
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
<?php ?>
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<link rel="stylesheet" href="css/style.css">
<script src="js/jquery-3.1.1.min.js" type="text/javascript"></script>
<script src="js/app.js"></script>
<title></title>
</head>
<body>
<div id="title">
<h1>Biblioteka</h1>
</div>
<div id="add_form">
<form class="add_form" action="./api/books.php" method="POST">
<label>autor:</label>
<input type="text" name="author"/></input>
<label>tytuł:</label>
<input type="text" name="title"/></input>
<label>opis fabuły:</label>
<textarea maxlength="1000" name="book_desc"/></textarea>
<label>gatunek:</label>
<input type="text" name="genre"></input><br>
<button name="submit">Dodaj książkę</button>
</form>
</div>
<hr>
<div id="books">
<table class="table_heading">
<tr>
<th>autor</th>
<th>tytuł</th>
<th>gatunek</th>
<th></th>
</tr>
</table>
</div>
</body>
</html>