Advertisement
farikariyanto

login_view

Oct 22nd, 2014
157
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.70 KB | None | 0 0
  1. <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
  2. <html xmlns="http://www.w3.org/1999/xhtml">
  3.   <head>
  4.     <title>Sistem Authentikasi</title>
  5.   </head>
  6.   <body>
  7.     <h1>Simple Login menggunakan CodeIgniter</h1>
  8.     <?php echo validation_errors(); ?>
  9.     <?php echo form_open('verifylogin'); ?>
  10.       <label for="username">Username:</label>
  11.       <input type="text" size="20" id="username" name="username" />
  12.       <br/>
  13.       <label for="password">Password:</label>
  14.       <input type="password" size="20" id="passowrd" name="password"/>
  15.       <br/>
  16.       <input type="submit" value="Login"/>
  17.     </form>
  18.   </body>
  19. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement