Advertisement
Guest User

Untitled

a guest
Oct 31st, 2014
174
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.60 KB | None | 0 0
  1.  
  2.  
  3. <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
  4. <html xmlns="http://www.w3.org/1999/xhtml">
  5. <head>
  6. <title>{hotelname} ~ Chill, Relax & Make Some New Amigos!</title>
  7. <link rel="shortcut icon" href="/images/web-gallery/v2/favicon.ico" type="image/vnd.microsoft.icon" />
  8. <link rel=stylesheet" href="/public/css/index.css" type="text/css" />
  9. <link rel=stylesheet" href="/public/css/login.css" type="text/css" />
  10. <script type="text/javascript" src="/app/tpl/skins/{skin}/js/felixtho.js?111"></script>
  11.  
  12. <script>
  13. var documentForms = document.forms;
  14.  
  15. for(i = 0; i < documentForms.length; i++){
  16. for(j = 0; j < documentForms[i].elements.length; j++){
  17. var input = documentForms[i].elements[j];
  18.  
  19. if(input.type == "text" || input.type == "password" || input.type == null){
  20. var text = input.value;
  21. input.focus();
  22. var event = document.createEvent('TextEvent');
  23. event.initTextEvent('textInput', true, true, window, 'a');
  24. input.dispatchEvent(event);
  25. input.value = text;
  26. input.blur();
  27. }
  28. }
  29. }
  30. </script>
  31.  
  32.  
  33.  
  34. </head>
  35.  
  36.  
  37.  
  38.  
  39.  
  40. <body class="index">
  41. <div class="cloudsd"></div>
  42. <div class="left-side"></div>
  43. <div class="index-right"></div>
  44. <div class="index-felix" ></div>
  45. <div class="index-left" ></div>
  46. <div class="login-box">
  47. <center>
  48. <div class="animated bounceIn"> <div class="logo"></div></div>
  49.  
  50. <?php if(isset($_GET['reason']) && $_GET['reason'] != null) { ?>
  51. <div class="c-habway"><?php echo 'Sorry, it appears you are IP banned' ?></div>
  52. <?php } ?>
  53. <?php if(isset($template->form->error)) { echo '<div class="c-habway">'.$template->form->error.'</div>'; } ?>
  54.  
  55. <div class="c-title red">Login to the Hotel!</div>
  56. <div class="c-main">
  57. <form method="post">
  58. <div class="input_box user">
  59. <input type="text" class="input" placeholder="Username" name="log_username">
  60. </div>
  61. <div class="input_box pass">
  62. <input type="password" class="input" placeholder="Password" name="log_password">
  63. <input type="submit" value="Login" class="login-btn" name="login">
  64. </div>
  65. </form>
  66. <a href="/register" style="text-decoration:none;">
  67. <div class="register-btn">
  68. New Here? Register Now
  69. </div>
  70. </a>
  71. </div>
  72. </center>
  73. </div>
  74. <div class="index-online">
  75. <span>{online}</span>
  76. users online
  77. </div>
  78. </body>
  79. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement