1234567891011121314151617181920212223242526272829303132333435363738394041 |
- <html>
- <head>
- <meta charset="utf-8">
- <meta http-equiv="x-ua-compatible" content="ie=edge">
- <meta name="viewport" content="width=device-width, initial-scale=1">
- <link href='synrc.css?v=202' type='text/css' rel='stylesheet'>
- <title>Chat</title>
- </head>
- <body class="chat">
- <header>
- <a href="/app/login.htm"><img src="https://n2o.space/img/Synrc%20Neo.svg"></a>
- <h2 id=heading>room</h2>
- <button id=logout>logout</button>
- </header>
- <main>
- <form>
- <textarea id=message rows='4' autofocus placeholder="Just type what you think about this"></textarea>
- <button id=upload>Browse</button>
- <button id=send>chat</button>
- </form>
- <history id="history">
- </history>
- </main>
- <script>host = location.hostname === 'sample.n2o.space' ? 'ns.synrc.com' : location.hostname;
- port = 8001;</script>
- <script src='/n2o/bert.js'></script>
- <script src='/n2o/client.js'></script>
- <script src='/n2o/nitrogen.js'></script>
- <script src='/n2o/bullet.js'></script>
- <script src='/n2o/utf8.js'></script>
- <script src='/n2o/template.js'></script>
- <script src='/n2o/n2o.js'></script>
- <script src='/n2o/validation.js'></script>
- <script src='/n2o/ftp.js'></script>
- <script>protos = [$client,$bert]; N2O_start();</script>
- </body>
- </html>
|