fadilzteria

logins

Dec 12th, 2018
190
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 2.11 KB | None | 0 0
  1. <!DOCTYPE html>
  2. <html lang="en">
  3.  
  4.   <head>
  5.  
  6.     <meta charset="utf-8">
  7.     <meta http-equiv="X-UA-Compatible" content="IE=edge">
  8.     <meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
  9.     <meta name="description" content="">
  10.     <meta name="author" content="">
  11.  
  12.     <title>Login - Pendaftaran Siswa Baru</title>
  13.  
  14.     <!-- Bootstrap core CSS-->
  15.     <link href="<?php echo base_url('assets/bootstrap/css/bootstrap.min.css') ?>" rel="stylesheet">
  16.  
  17.     <!-- Custom fonts for this template-->
  18.     <link href="<?php echo base_url('assets/fontawesome-free/css/all.min.css') ?>" rel="stylesheet" type="text/css">
  19.  
  20.     <!-- Custom styles for this template-->
  21.     <link href="<?php echo base_url('css/sb-admin.css') ?>" rel="stylesheet">
  22.  
  23.   </head>
  24.  
  25.   <body class="bg-dark">
  26.  
  27.     <div class="container">
  28.       <div class="card card-login mx-auto mt-5">
  29.         <div class="card-header">Login</div>
  30.         <div class="card-body">
  31.           <form>
  32.             <div class="form-group">
  33.               <div class="form-label-group">
  34.                 <input type="username" id="username" class="form-control" placeholder="Username" required="required" autofocus="autofocus">
  35.                 <label for="username">Username</label>
  36.               </div>
  37.             </div>
  38.             <div class="form-group">
  39.               <div class="form-label-group">
  40.                 <input type="password" id="inputPassword" class="form-control" placeholder="Password" required="required">
  41.                 <label for="inputPassword">Password</label>
  42.               </div>
  43.             </div>
  44.             <a class="btn btn-primary btn-block" href="index.html">Login</a>
  45.           </form>
  46.         </div>
  47.       </div>
  48.     </div>
  49.  
  50.     <!-- Bootstrap core JavaScript-->
  51.     <script src="<?php echo base_url('assets/jquery/jquery.min.js') ?>"></script>
  52.     <script src="<?php echo base_url('assets/bootstrap/js/bootstrap.bundle.min.js') ?>"></script>
  53.  
  54.     <!-- Core plugin JavaScript-->
  55.     <script src="<?php echo base_url('assets/jquery-easing/jquery.easing.min.js') ?>"></script>
  56.  
  57.   </body>
  58.  
  59. </html>
Advertisement
Add Comment
Please, Sign In to add comment