summaryrefslogtreecommitdiff
path: root/static/index.html
blob: 808799613e161ba8bf1004d475fd8f72448d3433 (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
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
<html>
  <head>
    <title>dump.fm</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">
    <link rel="shortcut icon" href="static/favicon.ico">


    <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/sha1.js"></script>
    <script type="text/javascript" src="static/pichat.js"></script>
    <script>
      $(document).ready(function() {
      init();
      });
    </script>
    
    <script type="text/javascript">
      function showPopup(url) {
      newwindow=window.open(url,'name','height=600,width=820,top=30,left=10,resizable');
      if (window.focus) {newwindow.focus()}
      }
    </script> 
  </head>
  <body>

    <div id="loginbar" style="display: none;">
      <span>Username:</span><input id="nickInput" type="input" />
      <br />
      <span>Password:</span><input id="passwordInput" type="password" />
      <br />
      <input type="button" id="loginSubmit" value="login" />
    </div>

    <div id="content">
      <div id="logo"><img src="static/bubley.png" width="332" height="113"></div>

      <div id="chatbox">

        <div id="welcomebar" style="display: none">
          <span>Welcome, </span>
          <span id="nickspan"></span>          
        </div>
        <div id="messagetabs">
          <div align="right"><a href="log.h"><img src="static/log4.png" width="97" height="39"></a></div>
        </div>
        <div id="rapper">
          <div id="userListicon">

            <div align="left">
              <p>UsrLst</p>
            </div>
          </div>
          <div id="popout">
            <div align="right"><a href="http://dump.fm"onClick='showPopup(this.href);return(false);'>popout room</a></div>
          </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="Send Image URL" 
                     disabled="disabled" />
            </div>
          </div>
        </div>
      </div>
    </div>
    
    <div id="lillogo" align="center">
      <div align="center">
        <div id="binfo">
          <p>dump.fm lets you talk with pictures.  beta 0.0127! <img src="static/lillogo.png" width="16" height="16"></p>
        </div>
      </div>
      <div id="plane"></div> 
    </div>
  </body>
</html>