summaryrefslogtreecommitdiff
path: root/static/index.html
blob: 15c5d1702f8bafbf03ece98628894c233f6e8ede (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
<html>
  <head>
    <title>Pichat</title>
    <link rel="stylesheet" type="text/css" href="static/reset.css">
    <link rel="stylesheet" type="text/css" href="static/pichat.css">
    <link rel="stylesheet" type="text/css" href="static/style.css">

    <script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jquery/1.3.2/jquery.min.js"></script>
    <script type="text/javascript" src="static/pichat.js"></script>
    <script>
      $(document).ready(function() {
          init();
      });
    </script>
  </head>
  <body>
    <div id="content">
      <h1>dump.fm</h1>
      <div id="chatbox">

        <div id="welcomebar" style="display: none">
          <span>Welcome, </span>
          <span id="nickspan"></span>          
        </div>

        <div id="loginbar" style="display: none">
          <span>Login</span>
          <span>Username:</span><input id="usernameInput" type="input" />
          <span>Password:</span><input id="passwordInput" type="input" />
          <input type="button" value="login" />
        </div>

        <div id="userList"></div>
        <div id="messagePane">
          <div id="messageList"></div>
          <div id="msgInputDiv">
            <input id="msgInput" type="input" disabled="disabled" />
            <input id="msgSubmit" type="submit" value="Enter" 
                   disabled="disabled" />
          </div>
        </div>
      </div>
    </div>

    <div id="apDiv3"></div>
    <div id="apDiv4"></div>
    <div id="bottom">
      <div align="center"></div>
    </div>
    <div id="apDiv5"></div>
    <div id="apDiv6"></div>
    <br />
  </body>
</html>