Advertisement
Guest User

Shift it Login Page

a guest
Nov 7th, 2016
80
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
HTML 2.58 KB | None | 0 0
  1. <!DOCTYPE html>
  2. <!--[if IE 8]><html class="lt-ie10 lt-ie9"> <![endif]-->
  3. <!--[if IE 9]><html class="lt-ie10"> <![endif]-->
  4. <!--[if gt IE 9]><!--> <html> <!--<![endif]-->
  5.     <head>
  6.        
  7.  
  8.         <style>
  9.              
  10.              
  11.              body {
  12.                  
  13.                  background: white;
  14.                  font-family: Arial;
  15.                  font-size: 40px;
  16.                  color: gray;
  17.              }
  18.              
  19.               .logo {
  20.                   padding-top:30px;
  21.                   position: relative;
  22.                   margin: auto;
  23.                   float:center;
  24.                   width:300px;
  25.                   text-align:center;
  26.                   letter-spacing:4px;
  27.                  
  28.               }
  29.              
  30.              
  31.               .logo img{
  32.                   max-width:300px;
  33.               }
  34.              
  35.              
  36.               .username{
  37.                   position:relative;
  38.                   padding-left:100px;
  39.                   padding-top:10px;
  40.                   margin:auto;
  41.                   float:center;
  42.                   max-width:300px;
  43.                   line-height:40px;
  44.                  font-size:18px;
  45.                  
  46.               }
  47.              
  48.               .username a{
  49.                   text-decoration: underline;
  50.                   color: #a8adb5;
  51.                   padding-right:7px;
  52.                   font-size:13px;
  53.                  
  54.               }
  55.              
  56.               .username a:hover{
  57.                   color:black;
  58.               }
  59.              
  60.              
  61.              
  62.               .buttons {
  63.                   background-color:#e8effc;
  64.                   padding:4px 8px;
  65.                   border:1px solid #d5dce8;
  66.                   margin-left: 10px;
  67.               }
  68.              
  69.              
  70.              
  71.         </style>
  72.     </head>
  73.     <body>
  74.    
  75.  <div class="logo">
  76.  <img src="https://68.media.tumblr.com/012859cd4c8215664d8595127cac4e84/tumblr_oga31uA16p1vksvzyo1_540.png">
  77.  </img>
  78.  Shift It
  79. </div>
  80.      
  81.     <div class="username">
  82.         <form action="" method="get">
  83.             Username: <input type="text" name="username"><br>
  84.             Password: <input type="password" name="password"><br>
  85.             <a href="/">Forgot Username</a>&nbsp;
  86.             <a href="/">Forgot Password</a>
  87.             <br>
  88.             <input type="submit" class="buttons"  value="Login">
  89.             <input type="submit" class="buttons" value="Create Company Account">
  90.         </form>  
  91.     </div>
  92.  
  93.    
  94. </body>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement