-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
executable file
·52 lines (47 loc) · 1.34 KB
/
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
39
40
41
42
43
44
45
46
47
48
49
50
51
52
<!DOCTYPE html>
<html>
<head>
<title>Telbook</title>
<meta http-equiv='Content-Type' content='text/html; charset=UTF-8' />
<link rel="stylesheet" type="text/css" href="client/css/default.css">
<script type="text/javascript" src="client/js/jquery-3.1.1.js"></script>
<script type="text/javascript" src="client/js/jquery-rest.js"></script>
<script type="text/javascript" src="client/js/client.js"></script>
</head>
<body>
<table class='layout'>
<tr>
<td class='panel'>
<h1>Persons</h1>
<div id='persons-messages'></div>
<div id='persons'></div>
<p>
<a href='#' class='add_icon person-add'>Add new person</a>
<a href='#' class='refresh_icon persons-refresh'>Refresh</a>
</p>
</td>
<td class='panel'>
<div id='person-messages'></div>
<div id='person-edit'></div>
</td>
</tr>
<tr>
<td class='panel'>
<h1>Telephones</h1>
<div id='telephones-messages'></div>
<div id='telephones'>
<p class='info_icon'>Click a person to view its telephones.</p>
</div>
</td>
<td class='panel'>
<div id='telephone-messages'></div>
<div id='telephone-edit'></div>
</td>
</tr>
</table>
<p>
<a href='https://github.com/katzarsky/php-rest-telbook.git' class='app_icon'>GIT: Download Source</a>
<small>(TU Plovdiv, PHP/MYSQL + JS/HTML/CSS/AJAX DEMO, 2017)</small>
</p>
</body>
</html>