forked from bloatless/php-websocket
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstatus.html
42 lines (35 loc) · 1.02 KB
/
status.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
<!DOCTYPE html>
<html>
<head>
<link rel="stylesheet" href="css/status.css">
<script src="js/jquery.min.js"></script>
<script src="js/json2.js"></script>
<script src="lib/coffeescript/jsmaker.php?f=status.coffee"></script>
<meta charset=utf-8 />
<title>Shiny WSS Status</title>
</head>
<body>
<div id="container">
<h1>Shiny WSS Status</h1>
<span id="status" class="offline">disconnected</span>
<div id="main">
<div id="clientList">
<h2>Clients:</h2>
<select id="clientListSelect" multiple="multiple"></select>
</div>
<div id="serverInfo">
<h2>Server Info:</h2>
<p>Connected Clients: <span id="clientCount"></span></p>
<p>Limit Clients: <span id="maxClients"></span></p>
<p>Limit Connections/IP: <span id="maxConnections"></span></p>
<p>Limit Requetes/Min: <span id="maxRequetsPerMinute"></span></p>
</div>
<div class="clearer"></div>
<div id="console">
<h2>Server Messages:</h2>
<div id="log"></div>
</div>
</div>
</div>
</body>
</html>