view openwebchat.html @ 78:0effc4481d18

refactored display code a bit
author Atul Varma <varmaa@toolness.com>
date Thu, 30 Apr 2009 18:15:32 -0700
parents 878871076cfa
children 002868ce7212
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="/media/css/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>
<script src="/media/js/jquery.js"></script>
<script src="/media/js/json2.js"></script>
<script src="/media/js/openwebchat.js"></script>
</body>
</html>