diff options
Diffstat (limited to 'application/views/file')
-rw-r--r-- | application/views/file/header.php | 11 | ||||
-rw-r--r-- | application/views/file/upload_form.php | 7 |
2 files changed, 8 insertions, 10 deletions
diff --git a/application/views/file/header.php b/application/views/file/header.php index 896b9c894..ca540c805 100644 --- a/application/views/file/header.php +++ b/application/views/file/header.php @@ -18,16 +18,7 @@ <?php if(isset($username) && $username) { ?> <?=anchor("user/logout", "Logout"); ?> <?php } else { ?> - <a> - Login - <div id="login-form"> - <?=form_open("user/login"); ?> - <input type="text" name="username" /> - <input type="password" name="password" /> - <input type="submit" value="Login" name="process" /> - </form> - </div> - </a> + <?=anchor("user/login", "Login"); ?> <?php } ?> </div> </div> diff --git a/application/views/file/upload_form.php b/application/views/file/upload_form.php index d4a35c8ee..ce1d00498 100644 --- a/application/views/file/upload_form.php +++ b/application/views/file/upload_form.php @@ -25,6 +25,13 @@ document.write('\ </div> <? } else { ?> You have to <?=anchor("user/login", "log in"); ?> to be able to upload/paste. +<div id="login-form"> + <?=form_open("user/login"); ?> + <input type="text" name="username" /> + <input type="password" name="password" /> + <input type="submit" value="Login" name="process" /> + </form> +</div> <? } ?> <br /> <p>Uploads/pastes are deleted after <?php echo $upload_max_age; ?> days<?php if($small_upload_size > 0): ?> |