renamed chat.php to chat.html, since in this file there is no php
[webchat.git] / chat.php
blob74e0f69f6e755aa93d29cdb326047128e5893d1d
1 <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
2 <html xmlns="http://www.w3.org/1999/xhtml" lang="en" xml:lang="en">
4 <head>
5 <title>Chatbox</title>
6 <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
7 <link rel="stylesheet" type="text/css" href="chat.css" />
9 <script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jquery/1.2.6/jquery.min.js"></script>
10 <script type="text/javascript" src="jquery.timers.js"></script>
11 <script type="text/javascript" src="date.format.js"></script>
12 <script type="text/javascript" src="chat.js"></script>
14 </head>
16 <body>
17 <div id="chatbox">
18 <div id="error"></div>
19 <fieldset id="asknick">
20 <legend>Chat with me!</legend>
21 <p>
22 <label for="name">Your name</label><input type="text" name="nick" />
23 </p>
24 <p>
25 <input type="submit" name="submit_nick" />
26 </p>
27 </fieldset>
28 <fieldset id="chatlog-fieldset">
29 <legend>Wellcome my dear!</legend>
30 <div id="chatlog"></div>
31 <div id="messagebox">
32 <input type="text" name="message" />
33 </div>
34 </fieldset>
35 </div>
36 <div id="nojs">
37 You need Javascript to use this chatbox!
38 </div>
40 </body>
41 </html>