diff options
Diffstat (limited to 'application/views/file/header.php')
-rw-r--r-- | application/views/file/header.php | 13 |
1 files changed, 7 insertions, 6 deletions
diff --git a/application/views/file/header.php b/application/views/file/header.php index 526a9bca4..e4a1edc2b 100644 --- a/application/views/file/header.php +++ b/application/views/file/header.php @@ -10,17 +10,18 @@ <body> <div class="top"> - <?php echo anchor('file/index', 'New'); ?> + <?php echo anchor('file/index', 'New'); ?> | + <?php echo anchor('file/upload_history', 'History'); ?> <div class="right"> <?php if(isset($username) && $username) { ?> <?=anchor("user/logout", "Logout"); ?> <?php } else { ?> - <?=form_open("user/login"); ?> - <input type="text" name="username" /> - <input type="password" name="password" /> - <input type="submit" value="Login" name="process" /> - </form> + <?=form_open("user/login"); ?> + <input type="text" name="username" /> + <input type="password" name="password" /> + <input type="submit" value="Login" name="process" /> + </form> <?php } ?> </div> </div> |