blob: 18e70f28c578e3a0bdfb1538b5f8f51c5856024b (
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
|
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE html PUBLIC
"-//W3C//DTD XHTML 1.0 Strict//EN"
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
<head>
<title>Alias</title>
<script type="text/javascript" src="lib/jquery-1.4.4.js"></script>
<script type="text/javascript" src="lib/jquery-ui-1.8.8.custom.min.js"></script>
<script type="text/javascript" src="lib/strophe.min.js"></script>
<script type="text/javascript" src="lib/basic.js"></script>
<script type="text/javascript" src="lib/sjcl.js"></script>
<link type="text/css" href="style/jquery-ui-1.8.8.custom.css" rel="stylesheet" />
<link rel="stylesheet" type="text/css" href="style/alias.css" />
</head>
<body>
<div id='login' style='text-align: center'>
<form action="#">
<p><label for='jid'>JID:</label>
<input type='text' id='jid'/>
<label for='pass'>Password:</label>
<input type='password' id='pass'/></p>
</form>
</div>
<div id='left'>
<div id='status'></div>
<div id='roster'>
<h2>Contacts</h2>
<input type="text" id="rosterfilter" name="test"/>
<ul>
</ul>
</div>
</div>
<div id='right'>
<div id='tabs'>
<ul>
<li><a href="#profile">Profile</a></li>
</ul>
<div id='profile'>
</div>
</div>
</div>
<div id='bottom'>
<div id='bottomup'><a href="#" id='consolea'>Console</a></div>
<div id='log'></div>
</div>
</body>
</html>
|