31 lines
742 B
HTML
31 lines
742 B
HTML
<!--
|
|
* @overview Life of German Reallife - Client Gui playerlist.html
|
|
* @author VegaZ
|
|
* @copyright (c) 2008 - 2018 Life of German
|
|
*-->
|
|
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<link rel="stylesheet" href="style.css" />
|
|
<script src="playerlist.js"></script>
|
|
</head>
|
|
|
|
<body>
|
|
<div class="playerlist">
|
|
<table>
|
|
<thead>
|
|
<tr>
|
|
<th><center>ID</center></th>
|
|
<th>Name</th>
|
|
<th><center>Ping</center></th>
|
|
</tr>
|
|
</thead>
|
|
<tbody>
|
|
</tbody>
|
|
<tr class="playerAmount"></tr>
|
|
</table>
|
|
</div>
|
|
<script src="jquery-3.3.1.min.js"></script>
|
|
</body>
|
|
</html> |