1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24
|
<!DOCTYPE html>
<html>
<meta http-equiv="content-type" content="text/html; charset=utf-8">
<link rel="shortcut icon" href="/static/icons/server_16.png" type="image/png">
<script src="js/vars.js" type="text/javascript"></script>
<script src="js/utils.js" type="text/javascript"></script>
<script src="js/gui.js" type="text/javascript"></script>
<script src="js/websocket.js" type="text/javascript"></script>
<link rel="stylesheet" type="text/css" href="/static/css/icons.css">
<link rel="stylesheet" type="text/css" href="/static/css/guitest.css">
<head>
</head>
<body onload="global_init()">
<table>
<tr><td>Message 1</td><td id="td_msg_1"></td></tr>
<tr><td>Message 2</td><td id="td_msg_2"></td></tr>
</table>
</body>
</html>
|