-
Notifications
You must be signed in to change notification settings - Fork 7
/
index.php
32 lines (28 loc) · 958 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
<?php
$clock = true;
require("include/html.inc");
htmlHeader();
htmlDropDown(0);
echo <<<EOF
</div>
<div id="content">
<div>
<table class="tbl tbl-hover tbl-users" id="tbl-online">
<thead><tr class="tbl-head">
<th>Player <i class="fa fa-unsorted" aria-hidden="true"></i></th>
<th>Area <i class="fa fa-unsorted" aria-hidden="true"></i></th>
<th>Job <i class="fa fa-unsorted" aria-hidden="true"></i></th>
</tr></thead>
<tbody id="ajax"></tbody>
</table>
<div id="toTop"><i class="fa fa-caret-square-o-up" aria-hidden="true"></i></div>
</div>
<br/>
<form method="get" class="searchBox" action="/search.php">
<input class="home-search searchBoxInput" type="text" autocomplete="off" name="id" size="32" placeholder="Search here..."><br/>
<i class="fa fa-search submit" aria-hidden="true"></i>
</form>
</div>
EOF;
htmlFooter();
?>