aboutsummaryrefslogtreecommitdiffstats
path: root/webclient/basic.html
blob: 587e5b78aebc268e3a7a9973ede2086146d88e59 (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
<!DOCTYPE html>
<html>
  <head>
    <title>Alias</title>
    <script src='lib/jquery-1.4.4.js'></script>
    <script src='lib/strophe.min.js'></script>
    <script src='lib/basic.js'></script>
    <link rel="stylesheet" type="text/css" href="style.css" />
  </head>
  <body>
    <div id='login' style='text-align: center'>
      <form name='cred'>
        <label for='jid'>JID:</label>
        <input type='text' id='jid'>
        <label for='pass'>Password:</label>
        <input type='password' id='pass'>
        <input type='button' id='connect' value='connect'>
      </form>
    </div>
    <hr/>
   	<div id='roster'>
   	<h2>Contacts</h2>
   	<input type="text" id="rosterfilter" name="test"/>
   	<ul>
   	</ul>
   	</div>
    <div id='bottom'>
    	<div id='bottomup'><a href="#" id='consolea'>Console</a></div>
    	<div id='log'></div>
    </div>
  </body>
</html>