Advertisement
Rofihimam

Untitled

Jan 15th, 2020
142
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 1.53 KB | None | 0 0
  1. <link rel="stylesheet" type="text/css" href="assets/bootstrap/css/bootstrap.min.css" crossorigin="anonymous">
  2. <link rel="stylesheet" type="text/css" href="assets/fontawesome/css/all.min.css">
  3. <link rel="stylesheet" type="text/css" href="assets/bootstrap/js/bootstrap.min.js">
  4. <style type="text/css">
  5.         .container{
  6.             width: 30%;
  7.             margin-top: 100px;
  8.             padding: 30px;
  9.             background-color: #D3E3FC;
  10.             box-shadow: 5px 5px 10px grey;
  11.             border-radius: 5px;
  12.  
  13.         }
  14.         body{
  15.             background: linear-gradient(to left, #660066 20%, #ff0066 100%);
  16.         }
  17. </style>
  18.  
  19. <body>
  20.     <div class="container">
  21.         <h2 align="center">LOGIN</h2>
  22.         <form class="form-horizontal" action="login.php" method="POST">
  23.             <div class="form-group">
  24.                     <label>Username</label>
  25.                     <div class="input-group">
  26.                         <div class="input-group-prepend">
  27.                             <div class="input-group-text"><i class="fas fa-user"></i></div>
  28.                         </div>
  29.                         <input class="form-control" type="text" name="username" placeholder="Masukkan Username">
  30.                     </div>
  31.                 </div>
  32.  
  33.             <div>  
  34.                 <label>Password</label>
  35.                 <div class="input-group">
  36.                     <div class="input-group-prepend">
  37.                         <div class="input-group-text"><i class="fas fa-key"></i></div>
  38.                     </div>
  39.                 <input class="form-control" type="password" name="password" placeholder="Masukkan Password">
  40.                 </div>
  41.             </div>
  42.  
  43.             <div class="form-group">
  44.                 <label class="control-label"></label>
  45.                 <div>
  46.                     <button type="submit" class="btn btn-primary mt-2">Login</button>
  47.                 </div>
  48.             </div>
  49.         </form>
  50.     </div>
  51. </body>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement