diff options
Diffstat (limited to 'application/views/user/login.php')
-rw-r--r-- | application/views/user/login.php | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/application/views/user/login.php b/application/views/user/login.php new file mode 100644 index 000000000..ca6f01b88 --- /dev/null +++ b/application/views/user/login.php @@ -0,0 +1,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> |