-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.php
44 lines (43 loc) · 1 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
<?php
/*
GNU Public License
Version: GPL 3
*/
require_once "root.php";
require_once "resources/require.php";
require_once "resources/check_auth.php";
require_once "resources/header.php";
require_once "resources/paging.php";
?>
<table width="100%" border="0" cellpadding="0" cellspacing="0">
<tr>
<td>
<table width="100%" border="0" cellpadding="0" cellspacing="0">
<tr>
<td class="current_call"></td>
<td width="30%" align="right" valign="top">
<input type="text" class="originate_number" /><button onclick="javascript: void(0)" class="btn">Call</button>
</td>
</tr>
</table>
</td>
</tr>
<tr>
<td>
<table class="tr_hover parked_list" width="100%" border="0" cellpadding="0" cellspacing="0">
<thead>
<tr>
<th>Caller Number</th>
<th>Caller Name</th>
<th>Call Description</th>
<th>Actions</th>
</tr>
</thead>
</table>
</td>
</tr>
</table>
<script type="text/javascript" src="status.js">
</script>
<?php
require_once "footer.php";