diff options
Diffstat (limited to 'application/views/file')
-rw-r--r-- | application/views/file/delete_form.php | 8 | ||||
-rw-r--r-- | application/views/file/header.php | 10 | ||||
-rw-r--r-- | application/views/file/upload_form.php | 7 | ||||
-rw-r--r-- | application/views/file/upload_history.php | 7 |
4 files changed, 14 insertions, 18 deletions
diff --git a/application/views/file/delete_form.php b/application/views/file/delete_form.php index f617d25c7..64e0f9cd7 100644 --- a/application/views/file/delete_form.php +++ b/application/views/file/delete_form.php @@ -25,13 +25,7 @@ <td class="text"><?php echo $filedata["mimetype"]; ?></td> </tr> <?php endif; ?> - <tr> - <td class="title">Password</td> - <td class="text"> - <input type="password" name="password" size="10" /> - <input type="submit" value="Delete" name="process" /> - </td> - </tr> </table> + <input type="submit" value="Delete" name="process" /> </form> </div> diff --git a/application/views/file/header.php b/application/views/file/header.php index e09f29f61..578ebe428 100644 --- a/application/views/file/header.php +++ b/application/views/file/header.php @@ -11,6 +11,16 @@ <body> <div class="top"> <?php echo anchor('file/index', 'New'); ?> + + <?php if (!isset($username)) { ?> + <div style="float: right"> + <?=form_open("user/login"); ?> + <input type="text" name="username" /> + <input type="password" name="password" /> + <input type="submit" value="Login" name="process" /> + </form> + </div> + <?php } ?> </div> <div class="content"> diff --git a/application/views/file/upload_form.php b/application/views/file/upload_form.php index 34dd5a77b..e1e4313a5 100644 --- a/application/views/file/upload_form.php +++ b/application/views/file/upload_form.php @@ -1,10 +1,9 @@ -<? if (false) { ?> +<? if ($username) { ?> <div style="margin-top: 100px; text-align:center"> <?php echo form_open_multipart('file/do_upload'); ?> <p> File: <input type="file" id="file" name="file" size="30" /> - <input type="submit" value="Upload" id="upload_button" name="process" /><br /> - Optional password (for deletion and search): <input type="password" name="password" size="10" /> + <input type="submit" value="Upload" id="upload_button" name="process" /> </p> </form> <script type="text/javascript"> @@ -34,7 +33,7 @@ <?php endif; ?>. Maximum upload size is <?php echo format_bytes($max_upload_size); ?></p> <h2>Features</h2> <p>For shell uploading and download information for the client go to <a href="<?php echo site_url("file/client"); ?>"><?php echo site_url("file/client"); ?></a></p> -<p>You can use the <?php echo anchor("file/upload_history", "history"); ?> to find old uploads using the password supplied when creating the upload.</p> +<p>You can use the <?php echo anchor("file/upload_history", "history"); ?> to find old uploads.</p> <p>How to link your uploads:</p> <ul> <li><span class="example">/<ID>/</span> automatically highlight the uploads</li> diff --git a/application/views/file/upload_history.php b/application/views/file/upload_history.php index b90d59be8..1dcaa8053 100644 --- a/application/views/file/upload_history.php +++ b/application/views/file/upload_history.php @@ -1,10 +1,3 @@ -<?php echo form_open('file/upload_history'); ?> - <p> - Password: <input type="password" name="password" size="10" /> - <input type="submit" value="Display" /> - </p> -</form> - <table class="results"> <tr> <th></th> |