login.htm 2.1 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950
  1. <html>
  2. <head>
  3. <meta name='viewport' content='initial-scale=0.5'>
  4. <link href='/static/synrc.css' type='text/css' rel='stylesheet'>
  5. <link href='http://fonts.googleapis.com/css?family=Open+Sans' rel='stylesheet' type='text/css'>
  6. <title>Login</title>
  7. </head>
  8. <body>
  9. <table cellpadding='20' align='center'>
  10. <tr>
  11. <td valign='top' align='center' height='230' width='300'>
  12. <img src='/static/S.svg' border='0' height='200' style='margin-top:0px;'><br>
  13. </td>
  14. <td colspan='2' width='700' valign='top'>
  15. <h1><b>N2O</b></h1>
  16. <h2>Simple Review Application</h2>
  17. </td>
  18. </tr>
  19. <tr>
  20. <td width='300' valign='top'>
  21. <p>List of spawned feeds:</p>
  22. <div id='history' class='feed'></div><br><br>
  23. </td>
  24. <td colspan='2' width='700' valign='top' height='550' bgcolor='#eeeeee'>
  25. <h1>Anyname Login</h1>
  26. <span id="display"></span><br>
  27. <span>Login: </span>
  28. <input id="user" type="text" autofocus="true"><br>
  29. <span>Join/Create Feed: </span>
  30. <input id="pass" type="text">
  31. <button id="loginButton" type="button">Login</button>
  32. </td>
  33. </td>
  34. </tr>
  35. </table>
  36. <script>var transition = {pid: '', host: 'localhost', port:'8000'};</script>
  37. <script src='/n2o/protocols/bert.js'></script>
  38. <script src='/n2o/protocols/binary.js'></script>
  39. <script src='/n2o/protocols/client.js'></script>
  40. <script src='/n2o/protocols/nitrogen.js'></script>
  41. <script src='/n2o/bullet.js'></script>
  42. <script src='/n2o/xhr.js'></script>
  43. <script src='/n2o/utf8.js'></script>
  44. <script src='/n2o/template.js'></script>
  45. <script src='/n2o/n2o.js'></script>
  46. <script src='/n2o/validation.js'></script>
  47. <script>protos = [$client,$bert]; N2O_start();</script>
  48. </body>
  49. </html>