1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950 |
- <html>
- <head>
- <meta name='viewport' content='initial-scale=0.5'>
- <link href='/static/synrc.css' type='text/css' rel='stylesheet'>
- <link href='http://fonts.googleapis.com/css?family=Open+Sans' rel='stylesheet' type='text/css'>
- <title>Login</title>
- </head>
- <body>
- <table cellpadding='20' align='center'>
- <tr>
- <td valign='top' align='center' height='230' width='300'>
- <img src='/static/S.svg' border='0' height='200' style='margin-top:0px;'><br>
- </td>
- <td colspan='2' width='700' valign='top'>
- <h1><b>N2O</b></h1>
- <h2>Simple Review Application</h2>
- </td>
- </tr>
- <tr>
- <td width='300' valign='top'>
- <p>List of spawned feeds:</p>
- <div id='history' class='feed'></div><br><br>
- </td>
- <td colspan='2' width='700' valign='top' height='550' bgcolor='#eeeeee'>
- <h1>Anyname Login</h1>
- <span id="display"></span><br>
- <span>Login: </span>
- <input id="user" type="text" autofocus="true"><br>
- <span>Join/Create Feed: </span>
- <input id="pass" type="text">
- <button id="loginButton" type="button">Login</button>
- </td>
- </td>
- </tr>
- </table>
- <script>var transition = {pid: '', host: 'localhost', port:'8000'};</script>
- <script src='/n2o/protocols/bert.js'></script>
- <script src='/n2o/protocols/binary.js'></script>
- <script src='/n2o/protocols/client.js'></script>
- <script src='/n2o/protocols/nitrogen.js'></script>
- <script src='/n2o/bullet.js'></script>
- <script src='/n2o/xhr.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>protos = [$client,$bert]; N2O_start();</script>
- </body>
- </html>
|