]> git.scottworley.com Git - reliable-chat/blame - webclient/rc.html
More "var" in variable declarations.
[reliable-chat] / webclient / rc.html
CommitLineData
827f21bb
SW
1<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN"
2 "http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd">
3
4<html xmlns="http://www.w3.org/1999/xhtml">
5<head>
6 <title>Reliable Chat</title>
7 <link rel="stylesheet" title="Default style" href="rc.css" type="text/css"/>
8 <script type="text/javascript" src="rc.js"></script>
9</head>
10
f0e385c7 11<body onload="rcconnect()">
827f21bb
SW
12 <table id="outer-table">
13 <tr><td id="history"></td></tr>
14 <tr><td id="status">&nbsp;</td></tr>
d3e2abf9
SW
15 <tr><td><form name="input" onsubmit="return false" autocomplete="off">
16 <input id="say" onkeydown="return rckeydown(event)" autocomplete="off"></input>
17 </form></td></tr>
827f21bb
SW
18 </table>
19</body>
20</html>