Mercurial > cosocket
view openwebchat.html @ 50:f78b986ecb6e
OWC now remembers your name.
author | Atul Varma <varmaa@toolness.com> |
---|---|
date | Tue, 28 Apr 2009 19:08:16 +0000 |
parents | 42b8c0229cd0 |
children | 878871076cfa |
line wrap: on
line source
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en"> <head> <meta http-equiv="Content-type" content="text/html; charset=utf-8" /> <link rel="stylesheet" type="text/css" media="all" href="openwebchat.css" /> <title>Open Web Chat</title> </head> <body> <div id="content"> <h1>This is a conversation.</h1> <div id="incoming-messages"></div> <textarea id="outgoing-message"></textarea> <p>Your name is <input type="text" id="name"/>.</p> <div id="bottom"></div> </div> <div id="templates"> <div class="error"> It appears that your connection to the server has been severed. Please reload this page to reconnect. (Sorry, this will be more user-friendly in the future!) </div> <div class="message"> <div class="author"></div> <div class="timestamp"></div> <div class="content"></div> </div> </div> <script src="jquery.js"></script> <script src="json2.js"></script> <script src="openwebchat.js"></script> </body> </html>