* Project for " A Guide to the Java API for WebSocket" article * Setting dependencies correctly * Formatting adjustments * Removing tomcat7 maven plugin * Applying formatt - No spaces
30 lines
814 B
HTML
30 lines
814 B
HTML
<html>
|
|
<head>
|
|
<title>Chat</title>
|
|
</head>
|
|
<body>
|
|
|
|
<table>
|
|
<tr>
|
|
<td colspan="2">
|
|
<input type="text" id="username" placeholder="Username"/>
|
|
<button type="button" onclick="connect();" >Connect</button>
|
|
</td>
|
|
</tr>
|
|
<tr>
|
|
<td>
|
|
<textarea readonly="true" rows="10" cols="80" id="log"></textarea>
|
|
</td>
|
|
</tr>
|
|
<tr>
|
|
<td>
|
|
<input type="text" size="51" id="msg" placeholder="Message"/>
|
|
<button type="button" onclick="send();" >Send</button>
|
|
</td>
|
|
</tr>
|
|
</table>
|
|
</body>
|
|
|
|
<script src="websocket.js"></script>
|
|
|
|
</html> |