index.html 2.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960
  1. <!doctype html>
  2. <html class="no-js" lang="en">
  3. <head>
  4. <title>Converse</title>
  5. <meta charset="utf-8"/>
  6. <meta name="viewport" content="width=device-width, initial-scale=1.0"/>
  7. <meta name="description" content="Converse XMPP/Jabber Chat"/>
  8. <meta name="author" content="JC Brand" />
  9. <meta name="keywords" content="xmpp chat webchat converse.js" />
  10. <link rel="shortcut icon" type="image/ico" href="/dist/favicon.ico"/>
  11. <script type="text/javascript" src="inverse-analytics.js"></script>
  12. <noscript><p><img src="//stats.opkode.com/piwik.php?idsite=5" style="border:0;" alt="" /></p></noscript>
  13. <link rel="manifest" href="./manifest.json">
  14. <link type="text/css" rel="stylesheet" media="screen" href="/dist/converse.min.css" />
  15. <script src="https://cdn.conversejs.org/3rdparty/libsignal-protocol.min.js"></script>
  16. <script src="/dist/converse.min.js"></script>
  17. </head>
  18. <body class="converse-fullscreen">
  19. <noscript>You need to enable JavaScript to run the Converse.js chat app.</noscript>
  20. <div id="conversejs-bg"></div>
  21. <script>
  22. /*
  23. @licstart
  24. This is free and unencumbered software released into the public domain.
  25. Anyone is free to copy, modify, publish, use, compile, sell, or
  26. distribute this software, either in source code form or as a compiled
  27. binary, for any purpose, commercial or non-commercial, and by any
  28. means.
  29. In jurisdictions that recognize copyright laws, the author or authors
  30. of this software dedicate any and all copyright interest in the
  31. software to the public domain. We make this dedication for the benefit
  32. of the public at large and to the detriment of our heirs and
  33. successors. We intend this dedication to be an overt act of
  34. relinquishment in perpetuity of all present and future rights to this
  35. software under copyright law.
  36. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
  37. EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
  38. MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
  39. IN NO EVENT SHALL THE AUTHORS BE LIABLE FOR ANY CLAIM, DAMAGES OR
  40. OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE,
  41. ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
  42. OTHER DEALINGS IN THE SOFTWARE.
  43. For more information, please refer to <http://unlicense.org/>
  44. @licend
  45. */
  46. converse.initialize({
  47. authentication: 'login',
  48. auto_away: 300,
  49. auto_reconnect: true,
  50. bosh_service_url: 'https://bindxmpp.sharix-app.org/bosh/', // Please use this connection manager only for testing purposes
  51. message_archiving: 'always',
  52. view_mode: 'fullscreen'
  53. });
  54. </script>
  55. </body>
  56. </html>