Advertisement
bayu_pangestoe

login_view

Aug 10th, 2017
62
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 1.30 KB | None | 0 0
  1. <!doctype html>
  2. <html>
  3. <head>
  4. <meta charset="utf-8">
  5. <title>Halaman Login</title>
  6. <link href="<?php echo base_url(); ?>/assets/images/javawebmedia.png" rel="shortcut icon">
  7. <link href="<?php echo base_url(); ?>/assets/css/style-admin.css" rel="stylesheet" type="text/css">
  8. </head>
  9.  
  10. <body>
  11. <section class="login">
  12.     <h1>Login Page</h1>
  13.    
  14.      <?php
  15.      // Cetak session
  16.     if($this->session->flashdata('sukses')) {
  17.         echo '<p class="warning" style="margin: 10px 20px;">'.$this->session->flashdata('sukses').'</p>';
  18.     }
  19.     // Cetak error
  20.     echo validation_errors('<p class="warning" style="margin: 10px 20px;">','</p>');
  21.     ?>
  22.    
  23.     <form action="<?php echo base_url('login') ?>" method="post">
  24.       <p>
  25.         <label for="username">Username</label>
  26.         <input type="text" name="username" id="username" placeholder="Username">
  27.        
  28.       </p>
  29.       <p>
  30.         <label for="password">Password</label>
  31.         <input type="password" name="password" id="password" placeholder="Password">
  32.       </p>
  33.       <p>
  34.         <input type="submit" name="submit" id="submit" value="Login" class="full">
  35.       </p>
  36.     </form>
  37.     <footer>Web design by <a href="http://javawebmedia.com" title="School of graphic &amp; web design" target="_blank">Java Web Media</a></footer>
  38. </section>
  39. </body>
  40. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement