blob: c612c3cc6338f12c61ef30c08765f7c5e6a01575 (
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
|
<!DOCTYPE html>
<html>
<head>
<title>Strophe.js Basic Example</title>
<script src='lib/jquery-1.4.4.min.js'></script>
<script src='lib/strophe.min.js'></script>
<script src='lib/basic.js'></script>
</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='contacts' style="float:left; width:40%; height:100%">
<h2>Contacts :</h2>
<ul>
</ul>
</div>
<div id='log' style="position:fixed; bottom:0px; width:100%; height:200px; overflow:scroll; border-top:1px solid black"></div>
</body>
</html>
|