1234567891011121314151617181920212223242526272829303132333435363738394041424344454647 |
- <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'>
- <a href="/doc"><img src='/static/S.svg' border='0' height='200' style='margin-top:0px;'></a><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>
- <p>List of inhabited realms:</p>
- <div class='feed'>
- {{folders}}
- </div>
- </td>
- <td colspan='2' width='700' valign='top' height='550' bgcolor='#eeeeee'>
- <h1>Anyname Login</h1>
- {{body}}
- </td>
- </tr>
- </table>
- <script>{{script}}</script>
- <script src='/n2o/protocols/bert.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>
|