view openwebchat.html @ 73:878871076cfa

Moved static files into a new media subdirectory.
author Atul Varma <varmaa@toolness.com>
date Thu, 30 Apr 2009 14:12:19 -0700
parents 42b8c0229cd0
children 0effc4481d18
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 class="message">
    <div class="author"></div>
    <div class="timestamp"></div>
    <div class="content"></div>
  </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>