summaryrefslogtreecommitdiffstats
path: root/application/views/user/login.php
blob: ca6f01b889023b795284d0058988dd7c552e31c9 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
<?php 
if (isset($login_error)) {
	echo '<font style="color: rgb(238, 51, 51);">The entered credentials are invalid.</font>';
} ?>

<?php echo form_open('user/login'); ?>
	<table>
    <tr>
      <td>Username:</td>
      <td><input type="text" name="username" /></td>
    </tr>
    <tr>
      <td>Password:</td>
      <td><input type="password" name="password" /></td>
    </tr>
  </table>
  <input type="submit" value="Login" name="process" />
</form>