Guest User

login_view

a guest
Aug 23rd, 2016
34
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.57 KB | None | 0 0
  1. <html xmlns="http://www.w3.org/1999/xhtml">
  2.  <head>
  3.    <title>Simple Login with CodeIgniter</title>
  4.  </head>
  5.  <body>
  6.    <h1>Simple Login with CodeIgniter</h1>
  7.    <?php echo validation_errors(); ?>
  8.    <?php echo form_open($this->uri->uri_string()); ?>
  9.      <label for="username">Username:</label>
  10.      <input type="text" size="20" id="username" name="username"/>
  11.      <br/>
  12.      <label for="password">Password:</label>
  13.      <input type="password" size="20" id="passowrd" name="password"/>
  14.      <br/>
  15.      <input type="submit" value="Login"/>
  16.    </form>
  17.  </body>
  18. </html>
Add Comment
Please, Sign In to add comment