2021-04-04 18:20:03 +02:00
|
|
|
<!doctype html>
|
|
|
|
<html>
|
|
|
|
|
|
|
|
<head>
|
|
|
|
<meta charset="utf-8" />
|
|
|
|
|
|
|
|
<script src="https://code.jquery.com/jquery-2.2.4.min.js"></script>
|
|
|
|
<script src="script.js"></script>
|
|
|
|
|
|
|
|
<link rel="stylesheet" href="style.css">
|
|
|
|
|
|
|
|
<!-- This will be updated dynamically -->
|
|
|
|
<title>IW4x Server</title>
|
|
|
|
</head>
|
|
|
|
|
|
|
|
<body>
|
|
|
|
<h1 id="header">Welcome to <span id="servername">IW4x Server</span></h1>
|
|
|
|
<table id="serverinfo">
|
|
|
|
<thead>
|
|
|
|
<tr>
|
2023-03-28 19:07:11 +02:00
|
|
|
<th colspan="4">Serverinfo</th>
|
2021-04-04 18:20:03 +02:00
|
|
|
</tr>
|
|
|
|
</thead>
|
|
|
|
</table>
|
|
|
|
<span id="connect">Connect</span>
|
|
|
|
<table id="playertable">
|
|
|
|
<thead>
|
|
|
|
<tr>
|
|
|
|
<th>Player</th>
|
2023-03-28 19:07:11 +02:00
|
|
|
<th>Test Client</th>
|
2021-04-04 18:20:03 +02:00
|
|
|
<th>Score</th>
|
|
|
|
<th>Ping</th>
|
|
|
|
</tr>
|
|
|
|
</thead>
|
|
|
|
<tbody id="players">
|
|
|
|
</tbody>
|
|
|
|
</table>
|
2023-03-28 19:07:11 +02:00
|
|
|
<div id="footer">
|
2021-04-04 18:20:03 +02:00
|
|
|
Get IW4x!
|
2023-03-28 19:07:11 +02:00
|
|
|
</div>
|
2021-04-04 18:20:03 +02:00
|
|
|
</body>
|
|
|
|
|
|
|
|
</html>
|