Advertisement
Guest User

Untitled

a guest
May 5th, 2016
64
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 6.49 KB | None | 0 0
  1. <html>
  2. <head>
  3. <title>Power Index</title>
  4. <style>
  5. body {
  6. background-image: url('http://img0.ndsstatic.com/wallpapers/bec3b196818c7bdf831419c2213a7391_large.jpeg');
  7. background-size: cover;
  8. overflow-x: none;
  9. margin: 0;
  10. padding: 0;
  11. }
  12. header {
  13. <MARQUEE>Welcome to Power Hotel Enjoy your stay!</MARQUEE>
  14. display: block;
  15. position: fixed;
  16. top: 0%;
  17. left: 0%;
  18. width: 100%;
  19. height: 7%;
  20. padding: 2.5px;
  21. background-color: white;
  22. opacity: 0.8;
  23. text-align: center;
  24. font-size: 32px;
  25. }
  26.  
  27. up vote
  28. 6
  29. down vote
  30. <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
  31. <html xmlns="http://www.w3.org/1999/xhtml">
  32. <head>
  33. <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
  34. <title>Login Page</title>
  35. <style>
  36. /* Basics */
  37. html, body {
  38. width: 100%;
  39. height: 100%;
  40. font-family: "Helvetica Neue", Helvetica, sans-serif;
  41. color: #444;
  42. -webkit-font-smoothing: antialiased;
  43. background: #f0f0f0;
  44. }
  45. #container {
  46. position: fixed;
  47. width: 340px;
  48. height: 280px;
  49. top: 50%;
  50. left: 50%;
  51. margin-top: -140px;
  52. margin-left: -170px;
  53. background: #fff;
  54. border-radius: 3px;
  55. border: 1px solid #ccc;
  56. box-shadow: 0 1px 2px rgba(0, 0, 0, .1);
  57.  
  58. }
  59. form {
  60. margin: 0 auto;
  61. margin-top: 20px;
  62. }
  63. label {
  64. color: #555;
  65. display: inline-block;
  66. margin-left: 18px;
  67. padding-top: 10px;
  68. font-size: 14px;
  69. }
  70. p a {
  71. font-size: 11px;
  72. color: #aaa;
  73. float: right;
  74. margin-top: -13px;
  75. margin-right: 20px;
  76. -webkit-transition: all .4s ease;
  77. -moz-transition: all .4s ease;
  78. transition: all .4s ease;
  79. }
  80. p a:hover {
  81. color: #555;
  82. }
  83. input {
  84. font-family: "Helvetica Neue", Helvetica, sans-serif;
  85. font-size: 12px;
  86. outline: none;
  87. }
  88. input[type=text],
  89. input[type=password] ,input[type=time]{
  90. color: #777;
  91. padding-left: 10px;
  92. margin: 10px;
  93. margin-top: 12px;
  94. margin-left: 18px;
  95. width: 290px;
  96. height: 35px;
  97. border: 1px solid #c7d0d2;
  98. border-radius: 2px;
  99. box-shadow: inset 0 1.5px 3px rgba(190, 190, 190, .4), 0 0 0 5px #f5f7f8;
  100. -webkit-transition: all .4s ease;
  101. -moz-transition: all .4s ease;
  102. transition: all .4s ease;
  103. }
  104. input[type=text]:hover,
  105. input[type=password]:hover,input[type=time]:hover {
  106. border: 1px solid #b6bfc0;
  107. box-shadow: inset 0 1.5px 3px rgba(190, 190, 190, .7), 0 0 0 5px #f5f7f8;
  108. }
  109. input[type=text]:focus,
  110. input[type=password]:focus,input[type=time]:focus {
  111. border: 1px solid #a8c9e4;
  112. box-shadow: inset 0 1.5px 3px rgba(190, 190, 190, .4), 0 0 0 5px #e6f2f9;
  113. }
  114. #lower {
  115. background: #ecf2f5;
  116. width: 100%;
  117. height: 69px;
  118. margin-top: 20px;
  119. box-shadow: inset 0 1px 1px #fff;
  120. border-top: 1px solid #ccc;
  121. border-bottom-right-radius: 3px;
  122. border-bottom-left-radius: 3px;
  123. }
  124. input[type=checkbox] {
  125. margin-left: 20px;
  126. margin-top: 30px;
  127. }
  128. .check {
  129. margin-left: 3px;
  130. font-size: 11px;
  131. color: #444;
  132. text-shadow: 0 1px 0 #fff;
  133. }
  134. input[type=submit] {
  135. float: right;
  136. margin-right: 20px;
  137. margin-top: 20px;
  138. width: 80px;
  139. height: 30px;
  140. font-size: 14px;
  141. font-weight: bold;
  142. color: #fff;
  143. background-color: #acd6ef; /*IE fallback*/
  144. background-image: -webkit-gradient(linear, left top, left bottom, from(#acd6ef), to(#6ec2e8));
  145. background-image: -moz-linear-gradient(top left 90deg, #acd6ef 0%, #6ec2e8 100%);
  146. background-image: linear-gradient(top left 90deg, #acd6ef 0%, #6ec2e8 100%);
  147. border-radius: 30px;
  148. border: 1px solid #66add6;
  149. box-shadow: 0 1px 2px rgba(0, 0, 0, .3), inset 0 1px 0 rgba(255, 255, 255, .5);
  150. cursor: pointer;
  151. }
  152. input[type=submit]:hover {
  153. background-image: -webkit-gradient(linear, left top, left bottom, from(#b6e2ff), to(#6ec2e8));
  154. background-image: -moz-linear-gradient(top left 90deg, #b6e2ff 0%, #6ec2e8 100%);
  155. background-image: linear-gradient(top left 90deg, #b6e2ff 0%, #6ec2e8 100%);
  156. }
  157. input[type=submit]:active {
  158. background-image: -webkit-gradient(linear, left top, left bottom, from(#6ec2e8), to(#b6e2ff));
  159. background-image: -moz-linear-gradient(top left 90deg, #6ec2e8 0%, #b6e2ff 100%);
  160. background-image: linear-gradient(top left 90deg, #6ec2e8 0%, #b6e2ff 100%);
  161. }
  162. .logo {
  163. position:fixed;
  164. top: 2.5%;
  165. left: 2.5%;
  166. }
  167. </style>
  168.  
  169. </head>
  170.  
  171. <body>
  172.  
  173. <!-- Begin Page Content -->
  174. <div id="container">
  175. <form action="login_process.php" method="post">
  176. <label for="loginmsg" style="color:hsla(0,100%,50%,0.5); font-family:"Helvetica Neue",Helvetica,sans-serif;"><?php echo @$_GET['msg'];?></label>
  177. <label for="username">Username:</label>
  178. <input type="text" id="username" name="username">
  179. <label for="password">Password:</label>
  180. <input type="password" id="password" name="password">
  181. <div id="lower">
  182.  
  183. <input type="submit" value="Login">
  184. </div><!--/ lower-->
  185. </form>
  186. </div><!--/ container-->
  187. <!-- End Page Content -->
  188. </body>
  189. </html>
  190. </style>
  191. </head>
  192. <body>
  193. <header>
  194.  
  195. </header>
  196. </body>
  197. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement