Advertisement
yusufmukharom

v_

Mar 28th, 2020
342
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
HTML 5 2.01 KB | None | 0 0
  1. <!DOCTYPE html>
  2. <html>
  3.   <head>
  4.     <title>Masuk</title>
  5.     <meta name="viewport" content="width=device-width, initial-scale=1.0">
  6.  
  7.     <!-- Bootstrap -->
  8.     <link href="<?php echo base_url().'assets/css/bootstrap.min.css'?>" rel="stylesheet">
  9.     <!-- styles -->
  10.     <link href="<?php echo base_url().'assets/css/stylesl.css'?>" rel="stylesheet">
  11.    
  12.    
  13.   </head>
  14.   <body class="login-bg">
  15.  
  16.  
  17.     <div class="page-content container">
  18.         <div class="row">
  19.             <div class="col-md-4 col-md-offset-4">
  20.                 <div class="login-wrapper">
  21.                     <div class="box">
  22.                         <div class="content-wrap">
  23.                             <img width="auto" height="auto" src="<?php echo base_url().'assets/img/logo.png'?>"/>
  24.                             <p><?php echo $this->session->flashdata('msg');?></p>
  25.                             <hr/>
  26.                             <form action="<?php echo base_url().'administrator/cekuser'?>" method="post">
  27.                                 <input class="form-control" type="text" name="username" placeholder="Username" required>
  28.                                 <input class="form-control" type="password" name="password" placeholder="Password" style="margin-bottom:1px;" required>
  29.                                 <div class="action">
  30.                                     <button type="submit" class="btn btn-lg " style="width:310px;margin-top:0px; bg-color:#ff9000;">Login</button>
  31.                                 </div>
  32.                             </form>
  33.                                            
  34.                         </div>
  35.                     </div>
  36.  
  37.                     <div class="already">
  38.                         <p>Username: admin | kasir<br/> Password: admin | kasir</p>
  39.                        
  40.                     </div>
  41.                 </div>
  42.             </div>
  43.         </div>
  44.     </div>
  45.  
  46.  
  47.  
  48.     <!-- jQuery (necessary for Bootstrap's JavaScript plugins) -->
  49.     <script src="<?php echo base_url().'assets/js/jquery.min.js'?>"></script>
  50.     <!-- Include all compiled plugins (below), or include individual files as needed -->
  51.     <script src="<?php echo base_url().'assets/js/bootstrap.min.js'?>"></script>
  52.    
  53.   </body>
  54. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement