embedded.html 4.2 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192
  1. <!DOCTYPE html>
  2. <html lang="en">
  3. <head>
  4. <title>Converse - Anonymous login demo</title>
  5. <meta charset="utf-8">
  6. <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
  7. <meta name="viewport" content="width=device-width, initial-scale=1.0" />
  8. <meta name="description" content="Converse XMPP/Jabber Chat"/>
  9. <meta name="author" content="JC Brand" />
  10. <meta name="keywords" content="xmpp chat webchat converse.js Converse" />
  11. <!-- These files are NOT needed when using converse.js in your own project. -->
  12. <link rel="shortcut icon" type="image/ico" href="../dist/favicon.ico"/>
  13. <link type="text/css" rel="stylesheet" media="screen" href="../dist/website.min.css" />
  14. <noscript><p><img src="https://stats.opkode.com/piwik.php?idsite=1" style="border:0;" alt="" /></p></noscript>
  15. <script type="text/javascript" src="/analytics.js"></script>
  16. <!-- *********************************************************************** -->
  17. <link rel="manifest" href="../manifest.json">
  18. <link type="text/css" rel="stylesheet" media="screen" href="../dist/converse.css" />
  19. <script src="../3rdparty/libsignal-protocol.js"></script>
  20. <script src="../dist/converse.js"></script>
  21. <style>
  22. .converse-container {
  23. height: 50vh;
  24. }
  25. </style>
  26. </head>
  27. <body id="page-top" data-spy="scroll" class="converse-website">
  28. <section class="section-wrapper">
  29. <section id="intro" class="intro text-center" class="container">
  30. <div class="row">
  31. <div class="col-md-12 col-md-offset-2">
  32. <h1 class="brand-heading fade-in">
  33. <svg class="converse-svg-logo"
  34. xmlns:svg="http://www.w3.org/2000/svg"
  35. xmlns="http://www.w3.org/2000/svg"
  36. xmlns:xlink="http://www.w3.org/1999/xlink"
  37. viewBox="0 0 364 364">
  38. <title>Converse</title>
  39. <g class="cls-1" id="g904">
  40. <g data-name="Layer 2">
  41. <g data-name="Layer 7">
  42. <path
  43. class="cls-3"
  44. d="M221.46,103.71c0,18.83-29.36,18.83-29.12,0C192.1,84.88,221.46,84.88,221.46,103.71Z" />
  45. <path
  46. class="cls-4"
  47. d="M179.9,4.15A175.48,175.48,0,1,0,355.38,179.63,175.48,175.48,0,0,0,179.9,4.15Zm-40.79,264.5c-.23-17.82,27.58-17.82,27.58,0S138.88,286.48,139.11,268.65ZM218.6,168.24A79.65,79.65,0,0,1,205.15,174a12.76,12.76,0,0,0-6.29,4.65L167.54,222a1.36,1.36,0,0,1-2.46-.8v-35.8a2.58,2.58,0,0,0-3.06-2.53c-15.43,3-30.23,7.7-42.73,19.94-38.8,38-29.42,105.69,16.09,133.16a162.25,162.25,0,0,1-91.47-67.27C-3.86,182.26,34.5,47.25,138.37,25.66c46.89-9.75,118.25,5.16,123.73,62.83C265.15,120.64,246.56,152.89,218.6,168.24Z" />
  48. </g>
  49. </g>
  50. </g>
  51. </svg>
  52. <span class="brand-heading__text">
  53. <span>converse<span class="subdued">.js</span></span>
  54. <p class="byline">messaging freedom</p>
  55. </span>
  56. </h1>
  57. <h3 class="mt-5">Embedded groupchat demo</h3>
  58. <div class="converse-container mx-auto" style="width: 50vw"">
  59. <converse-root></converse-root>
  60. </div>
  61. </div>
  62. </div>
  63. </section>
  64. </section>
  65. </body>
  66. <script>
  67. converse.initialize({
  68. authentication: 'anonymous',
  69. auto_login: true,
  70. auto_join_rooms: [
  71. 'anonymous@conference.nomnom.im',
  72. ],
  73. bosh_service_url: 'https://conversejs.org/http-bind/', // Please use this connection manager only for testing purposes
  74. jid: 'nomnom.im', // XMPP server which allows anonymous login (doesn't
  75. // allow chatting with other XMPP servers).
  76. notify_all_room_messages: [
  77. 'anonymous@conference.nomnom.im',
  78. ],
  79. singleton: true,
  80. locales_url: "../locale/{{{locale}}}/LC_MESSAGES/converse.json",
  81. view_mode: 'embedded',
  82. });
  83. </script>
  84. </html>