Advertisement
Guest User

Untitled

a guest
Aug 21st, 2014
232
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
HTML 1.47 KB | None | 0 0
  1. <style>
  2.     footer, .tabs {
  3.         display: none;
  4.     }
  5. </style>
  6. <script src="app/modules/login/login.js"></script>
  7. <header>
  8.     <div class="header-wrapper">
  9.         <h1>Imperia Online</h1>
  10.         <a class="settings-img"></a>
  11.     </div>
  12. </header>
  13. <div class="tabs"></div>
  14.  
  15. <div id="content">
  16.     <div class="wrapper">
  17.         <table class="table-nfix login-table">
  18.             <tr>
  19.                 <td>str_username: </td>
  20.                 <td class="login-input">
  21.                     <input type="text" id="username-input" class="full-width" />
  22.                 </td>
  23.             </tr>
  24.             <tr>
  25.                 <td>str_password: </td>
  26.                 <td class="login-input">
  27.                     <input type="password" id="password-input" class="full-width" />
  28.                 </td>
  29.             </tr>
  30.         </table>
  31.         <p>&nbsp;</p>
  32.         <div class="margins">
  33.             <button class="button half " id="register-button">str_register</button>
  34.             <button class="button half" id="login-button">str_login</button>
  35.         </div>
  36.     </div>
  37. </div>
  38. <footer>
  39.     <div class="footer-top-bg"></div>
  40.     <div class="footer-orn"></div>
  41.     <div class="footer-wrapper"></div>
  42. </footer>
  43. <script>
  44.     windowHeight = (typeof windowHeight !== "undefined" ? undefined : $("html").height());
  45.     appIO.helpers.layout.calculate(8, 0, 92, 0);
  46.     appIO.helpers.layout.langSet("login");
  47.     appIO.helpers.ui.autoRightFocus('#username-input');
  48. </script>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement