Advertisement
azzaleadefana

Untitled

Dec 26th, 2016
227
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.62 KB | None | 0 0
  1. <?php
  2. defined('BASEPATH') OR exit('No direct script access allowed');
  3. ?>
  4. <!DOCTYPE html>
  5. <html>
  6. <head>
  7.     <title>Login CodeIgniter</title>
  8. </head>
  9. <body>
  10. <?php echo "<h4>".$this->session->flashdata('pesan')."</h4>"; ?>
  11. <form method="POST" action="<?php echo base_url()."index.php/web/cek_login/"; ?>">
  12.     <table>
  13.         <tr>
  14.             <td>Username : </td>
  15.             <td><input type="text" name="user"></td>
  16.         </tr>
  17.         <tr>
  18.             <td>Password : </td>
  19.             <td><input type="password" name="pass"></td>
  20.         </tr>
  21.         <tr>
  22.             <td></td>
  23.             <td><input type="submit" name="tbl_login" value="Login"></td>
  24.         </tr>
  25.     </table>
  26. </form>
  27. </body>
  28. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement