index.html 1.6 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950
  1. <!DOCTYPE html>
  2. <html>
  3. <head>
  4. <meta charset="UTF-8">
  5. <meta name="viewport" content="width=device-width, initial-scale=1.0">
  6. <link href="/static/synrc.css" rel="stylesheet">
  7. <link href="https://fonts.googleapis.com/css?family=Open+Sans" rel="stylesheet">
  8. <title>Chat</title>
  9. </head>
  10. <body>
  11. <table cellpadding="20" align="center">
  12. <tr>
  13. <td valign="top" align="center" height="230" width="300">
  14. <br><img src="/static/S.svg" border="0" height="200" style="margin-top:0px;"><br>
  15. </td>
  16. <td colspan="2" width="700" valign="top">
  17. <h1><b id="heading">Roster</b></h1>
  18. <h2>Unique Feed<br><button id="logout"></button></h2>
  19. </td>
  20. </tr>
  21. <tr>
  22. <td width="300" valign="top">
  23. <p>Just type what you think about this:</p>
  24. <textarea id="message" style="margin-left:5px; width:490px; font-size:16pt;" value="" rows="5" autofocus></textarea>
  25. <div id="upload"></div>
  26. <div id="history"></div>
  27. <button id="send">Send</body>
  28. </td>
  29. </tr>
  30. </table>
  31. <script>var transition = {pid: '', host: 'localhost', port:'8000'};</script>
  32. <script src="/js/n2o/protocols/bert.js" defer></script>
  33. <script src="/js/n2o/protocols/client.js" defer></script>
  34. <script src="/js/n2o/protocols/nitrogen.js" defer></script>
  35. <script src="/js/n2o/bullet.js" defer></script>
  36. <script src="/js/n2o/xhr.js" defer></script>
  37. <script src="/js/n2o/utf8.js" defer></script>
  38. <script src="/js/n2o/template.js" defer></script>
  39. <script src="/js/n2o/n2o.js" defer></script>
  40. <script src="/js/n2o/validation.js" defer></script>
  41. <script src="/js/n2o/ftp.js" defer></script>
  42. <script>
  43. protos = [$client, $bert];
  44. N2O_start();
  45. </script>
  46. </body>
  47. </html>