Advertisement
Guest User

Login Sistem daftar.php

a guest
May 26th, 2018
5,243
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 1.89 KB | None | 0 0
  1. <!DOCTYPE html>
  2. <html>
  3. <head>
  4.     <title>Rully Studio | Sistem login sederhana</title>
  5.     <link rel="stylesheet" type="text/css" href="style/bootstrap.css">
  6. </head>
  7. <body>
  8.  
  9.  
  10. <div class="container" style="margin-top:8%">
  11.     <div class="row">
  12.         <div class="col-md-4 col-md-offset-4">
  13.             <p>
  14.                 <center>
  15.                     <h2>Sistem Login Sederhana</h2>
  16.                     Oleh : <a href="https://www.facebook.com.pendeta.mokong" target="_blank">Rully Studio</a>
  17.                 </center>
  18.             </p>
  19.             <br>
  20.                  
  21.             <form class="form-horizontal" action="input.php" method="post">
  22.                 <div class="box-body">
  23.                     <div class="form-group">
  24.                         <label for="inputEmail3" class="col-sm-3 control-label">Username</label>
  25.  
  26.                         <div class="col-sm-9">
  27.                             <input type="text" name="username" class="form-control" placeholder="Username" autofocus>
  28.                         </div>
  29.                     </div>
  30.                     <div class="form-group">
  31.                         <label for="inputPassword3" class="col-sm-3 control-label">Password</label>
  32.  
  33.                         <div class="col-sm-9">
  34.                             <input type="password" name="password" class="form-control" id="inputPassword3" placeholder="Password">
  35.                         </div>
  36.                     </div>
  37.                 </div>
  38.                 <div class="box-footer">
  39.                     <button type="submit" class="btn btn-primary pull-right">Daftar</button>
  40.                 </div>
  41.                 <div class="form-group">
  42.                   <div class="col-sm-offset-0 col-sm-12">
  43.                     <div class="checkbox">
  44.                      
  45.                         <p>
  46.                             Sudah punya akun..? <a href="login.php">Login</a>
  47.                         </p>
  48.                      
  49.                     </div>
  50.                   </div>
  51.                 </div>
  52.             </form>
  53.         </div>
  54.     </div>
  55.     <p style="margin-top:5%;">
  56.         <center>Copyright @ 2018 by : <a href="https://www.facebook.com.pendeta.mokong" target="_blank">Rully Studio</a> All rights reserved.</center>
  57.     </p>
  58. </div>
  59.     <script type="text/javascript" src="style/jquery.js"></script>
  60.     <script type="text/javascript" src="style/bootstrap.js"></script>  
  61.     <script type="text/javascript" src="script.js"></script>   
  62. </body>
  63. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement