Advertisement
Guest User

Untitled

a guest
Jan 19th, 2018
106
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
HTML 1.41 KB | None | 0 0
  1. <!DOCTYPE html>
  2. <html>
  3.   <head>
  4.  
  5.     <meta charset="utf-8">
  6.     <title>Login</title>
  7.  
  8.     <style>
  9.  
  10.       .form {
  11.         height: 200px;
  12.         width: 300px;
  13.         background-color: rgb(255, 255, 255);
  14.         border: 2px solid rgb(191, 191, 191);
  15.         border-radius: 5px;
  16.         box-shadow: 0px 0px 40px #888888;
  17.         position: absolute;
  18.         top: 35%;
  19.         left: 40%;
  20.       }
  21.  
  22.       .email {
  23.         border: none;
  24.         padding: 5px;
  25.         border-bottom: 2px solid rgb(71, 153, 179);
  26.         height: 30px;
  27.         width: 200px;
  28.         font-size: 15px;
  29.       }
  30.  
  31.       .pwd {
  32.         border: none;
  33.         padding: 5px;
  34.         border-bottom: 2px solid rgb(71, 153, 179);
  35.         height: 30px;
  36.         width: 200px;
  37.         font-size: 15px;
  38.       }
  39.  
  40.       .check {
  41.         margin-top: 5px;
  42.         height: 30px;
  43.         width: 200px;
  44.         background-color: rgb(71, 153, 179);
  45.         border: none;
  46.         color: rgb(255, 255, 255);
  47.         font-size: 15px;
  48.       }
  49.  
  50.     </style>
  51.  
  52.   </head>
  53.   <body>
  54.  
  55.  
  56.         <center><form class="form" action="POST">
  57.           <center><input class="email" type="email" placeholder="E-Mail"></center>
  58.           <center><input class="pwd" type="password" placeholder="Password"></center>
  59.           <center><input class="check" type="submit" value="Anmelden"></center>
  60.         </form></center>
  61.     </center>
  62.  
  63.   </body>
  64. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement