-if (has_error ())
- show_errors ();
-
-if (!has_error () && $writable)
-{
- ?><div id = "upload">
- <form enctype = "multipart/form-data" action = "
- <?php echo $cfg['web_root']; ?>" method =
- "post"> <div><input type = "hidden" name = "jirafeau" value = "
- <?php echo JIRAFEAU_VERSION; ?>" /></div> <fieldset>
- <legend><?php echo _('Upload a file');
- ?></legend> <p><input type = "file" name = "file" size =
- "30" /></p> <p class =
- "config"><?php printf (_('Maximum file size: %dMB'),
- jirafeau_get_max_upload_size () / (1024 *
- 1024));
- ?></p> <p><input type = "submit" value =
- "<?php echo _('Send'); ?>" /></p>
- <hr /><div id = "moreoptions"> <p><label><input type =
- "checkbox" name =
- "one_time_download" /><?php echo _('One time download');
- ?></label></p> <p><label for = "input_key"
- ><?php echo _('Password:');
- ?></label> <input type = "text" name = "key" id = "input_key" /></p>
- <p><label for = "select_time"
- ><?php echo _('Time limit:');
- ?></label>
- <select name = "time" id = "select_time">
- <option value = "none"><?php echo _('None');
- ?></option> <option value = "minute"><?php echo _('One minute');
- ?></option> <option value = "hour"><?php echo _('One hour');
- ?></option> <option value = "day"><?php echo _('One day');
- ?></option> <option value = "week"><?php echo _('One week');
- ?></option> <option value = "month"><?php echo _('One month');
- ?></option>
- </select> </p> </div> </fieldset> </form> </div> <?php
-}
+ <?php
+ if (jirafeau_has_upload_password($cfg)
+ && false === jirafeau_challenge_upload_ip_without_password($cfg, get_ip_address($cfg))) {
+ ?>
+ <form method="post" class="form logout">
+ <input type = "hidden" name = "action" value = "logout"/>
+ <input type = "submit" value = "<?php echo t('LOGOUT'); ?>" />
+ </form>
+ <?php