diff options
author | Florian Pritz <bluewind@xinu.at> | 2012-04-08 23:13:15 +0200 |
---|---|---|
committer | Florian Pritz <bluewind@xinu.at> | 2012-04-09 20:47:36 +0200 |
commit | 3f01ddce9dff69a49493541882de85854cbcebe5 (patch) | |
tree | 13c23f0a6893970ca71fbbfe763c3c696c8a0a4b /application/views/user/login.php | |
parent | b18f4e453ecdf3404a107f9fc72d7bd9249401d0 (diff) |
start working on users
Signed-off-by: Florian Pritz <bluewind@xinu.at>
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> |