Mercurial > prosody-modules
comparison mod_admin_web/admin_web/www_files/index.html @ 288:9233d7ee3c09
mod_admin_web: Initial PoC commit
| author | Florian Zeitz <florob@babelmonkeys.de> |
|---|---|
| date | Fri, 17 Dec 2010 03:34:53 +0100 |
| parents | |
| children | 5a619d6045a8 |
comparison
equal
deleted
inserted
replaced
| 287:6144fe6161f1 | 288:9233d7ee3c09 |
|---|---|
| 1 <?xml version="1.0" encoding="utf-8" ?> | |
| 2 <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN" | |
| 3 "http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd"> | |
| 4 <html xmlns="http://www.w3.org/1999/xhtml"> | |
| 5 <head> | |
| 6 <title>S2S</title> | |
| 7 <link rel="stylesheet" type="text/css" href="style.css" /> | |
| 8 <meta http-equiv="Content-Type" content="application/xhtml+xml; charset=utf-8" /> | |
| 9 <script type="text/javascript" src="js/jquery-1.4.4.min.js"></script> | |
| 10 <script type="text/javascript" src="js/strophe.js"></script> | |
| 11 <script type="text/javascript" src="js/main.js"></script> | |
| 12 </head> | |
| 13 <body> | |
| 14 <div id='login'> | |
| 15 <form id='cred' name='cred'> | |
| 16 <label for='jid'>JID:</label><br/> | |
| 17 <input type='text' id='jid' /> | |
| 18 <br /> | |
| 19 <label for='pass'>Password:</label><br/> | |
| 20 <input type='password' id='pass' /> | |
| 21 <br /> | |
| 22 <input type='submit' id='connect' value='connect' /> | |
| 23 </form> | |
| 24 </div> | |
| 25 | |
| 26 <div id='main'> | |
| 27 <div class="container"> | |
| 28 Incomming S2S connections: | |
| 29 <ul id="s2sin"></ul> | |
| 30 </div> | |
| 31 <div class="container"> | |
| 32 Outgoing S2S connections: | |
| 33 <ul id="s2sout"></ul> | |
| 34 </div> | |
| 35 </div> | |
| 36 | |
| 37 <div id='log_container'> | |
| 38 <a id='log_toggle' href='#'>Status Log :</a> | |
| 39 <div id='log'></div> | |
| 40 </div> | |
| 41 </body> | |
| 42 </html> |
