-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.php
42 lines (33 loc) · 814 Bytes
/
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<link rel="stylesheet" href="css/style.css">
<script src="js/jquery-3.1.1.min.js"></script>
<script src="js/app.js"></script>
</head>
<body>
<div class="ajaxStatus">saving...</div>
<form id="addbook">
<label>Imię i nazwisko autora:</label>
<input type="text" name="author" />
<label>Tytuł książki:</label>
<input type="text" name="name" />
<label>Opis książki:</label>
<input type="text" name="book_desc" />
<input type="submit" value="Dodaj książkę" />
</form>
<hr/>
<h1>Książki</h1>
<a id="refresh" href="#">Odśwież</a>
<table id="ksiazki" border="1" cellspacing="4" cellpadding="4" width="100%">
<tr>
<th>Autor</th>
<th>Tytuł</th>
<th>Opis</th>
<th>Edytuj</th>
<th>Usuń</th>
</tr>
</table>
</body>
</html>