index.htm 1.3 KB

1234567891011121314151617181920212223242526272829303132333435363738
  1. <html>
  2. <head>
  3. <meta charset="utf-8">
  4. <meta http-equiv="x-ua-compatible" content="ie=edge">
  5. <meta name="viewport" content="width=device-width, initial-scale=1">
  6. <link href='synrc.css?v=210' type='text/css' rel='stylesheet'>
  7. <title>Chat</title>
  8. </head>
  9. <body class="chat">
  10. <header>
  11. <a href="/login.htm"><img src="https://n2o.space/img/Synrc%20Neo.svg"></a>
  12. <h2 id=heading>room</h2>
  13. <button id=logout>logout</button>
  14. </header>
  15. <main>
  16. <form>
  17. <textarea id=message rows='4' autofocus placeholder="Just type what you think about this"></textarea>
  18. <button id=upload>Browse</button>
  19. <button id=send>chat</button>
  20. </form>
  21. <history id="history">
  22. </history>
  23. </main>
  24. <script src="//cdnjs.cloudflare.com/ajax/libs/paho-mqtt/1.0.1/mqttws31.js"></script>
  25. <script src='/n2o/utf8.js?v=11'></script>
  26. <script src='/n2o/bert.js?v=11'></script>
  27. <script src='/n2o/ieee754.js?v=11'></script>
  28. <script src='/n2o/n2o.js?v=11'></script>
  29. <script>host = location.hostname === 'review.n2o.space' ? 'ns.synrc.com' : location.hostname; port = 8000;</script>
  30. <script src='/n2o/ftp.js?v=10'></script>
  31. <script src='/n2o/nitro.js?v=10'></script>
  32. <script src='/n2o/mq.js?v=10'></script>
  33. </body>
  34. </html>