Advertisement
akazu

Form_login

Jul 1st, 2016
107
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
CSS 1.00 KB | None | 0 0
  1. <!DOCTYPE html>
  2. <html>
  3. <head>
  4.     <title></title>
  5. </head>
  6. <style>
  7.     *{
  8.         margin:0px;
  9.         padding:0px;
  10.     }
  11.     body{
  12.         background-image:url("assets/img/bg_login.jpg");
  13.         background-size: cover;
  14.         color:white;
  15.  
  16.     }
  17.     .wrap{
  18.         width:100%;
  19.         height:100%;
  20.         background:black;
  21.         opacity: 1;
  22.     }
  23.     fieldset{
  24.         margin:100px auto;
  25.         width:20%;
  26.         text-align: right;
  27.         padding:20px;
  28.     }
  29.  
  30.     input[type="submit"]{
  31.     width:60px;
  32.     height:30px;
  33.     color:white;
  34.     background: #272822;
  35.     border:1px solid #272822;
  36.     border-radius:8px;
  37.     cursor:pointer;
  38. }
  39.  
  40. </style>
  41. <body>
  42.     <div class="wrap">
  43.         <form action='login_proses.php' method='POST'>
  44.             <fieldset>
  45.                 <legend>Login</legend>
  46.                 <label name='user'>Username : <input type="text" name="user" placeholder='username..'></label><br><br>
  47.                 <label name='password'>Password : <input type="password" name="password" placeholder='password..'></label><br><br>
  48.                 <input type='submit' name='login' value='Login'></input>
  49.             </fieldset>
  50.         </form>
  51.     </div>
  52. </body>
  53. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement