aboutsummaryrefslogtreecommitdiffstats
path: root/webclient/basic.html
diff options
context:
space:
mode:
authorThibaut Horel <thibaut.horel@gmail.com>2010-12-31 19:19:25 +0100
committerThibaut Horel <thibaut.horel@gmail.com>2010-12-31 19:19:25 +0100
commitd90aec17e2201f256783a531c548dcc9857c889d (patch)
tree56b6d0580ee1993c73e67c63d4a452a81bbaaf1e /webclient/basic.html
parentaf76bcdf7a947702eaa19d39f5b9ecfcd7ec6fd2 (diff)
downloadalias-d90aec17e2201f256783a531c548dcc9857c889d.tar.gz
Cleanup of repository. Bases of webclient.
* remove sleekxmpp (install guideline in server/README) * move server code to server directory * webclient directory with basic strophejs example
Diffstat (limited to 'webclient/basic.html')
-rw-r--r--webclient/basic.html22
1 files changed, 22 insertions, 0 deletions
diff --git a/webclient/basic.html b/webclient/basic.html
new file mode 100644
index 0000000..1d6d16f
--- /dev/null
+++ b/webclient/basic.html
@@ -0,0 +1,22 @@
+<!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='log'></div>
+ </body>
+</html>