26 lines
920 B
HTML
26 lines
920 B
HTML
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
|
|
<html xmlns="http://www.w3.org/1999/xhtml">
|
|
<head>
|
|
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8"/>
|
|
<title>Websocket Test</title>
|
|
<link rel="stylesheet" href="style.css" type="text/css"/>
|
|
<script src="http://ajax.googleapis.com/ajax/libs/jquery/1.4.1/jquery.min.js"></script>
|
|
<script src="script.js"></script>
|
|
</head>
|
|
<body>
|
|
<div id="body">
|
|
<div id="inbox">
|
|
</div>
|
|
<div id="input">
|
|
<form action="#" method="post" id="commandForm" onSubmit="return newCommand()">
|
|
<fieldset>
|
|
<legend>Command</legend>
|
|
<input id="commandInput" type="text" style="width:500px" />
|
|
<input id="submit" type="submit" value="Send" />
|
|
</fieldset>
|
|
</form>
|
|
</div>
|
|
</div>
|
|
</body>
|
|
</html>
|