+ <?php
+ if ($cfg['maximal_upload_size'] > 0) {
+ echo '<p class="config">' . t('File size is limited to');
+ echo " " . $cfg['maximal_upload_size'] . " MB</p>";
+ }
+ ?>
+
+ <p id="max_file_size" class="config"></p>
+ <p>
+ <?php
+ if (jirafeau_has_upload_password($cfg) && $_SESSION['upload_auth']) {
+ ?>
+ <input type="hidden" id="upload_password" name="upload_password" value="<?php echo $_SESSION['user_upload_password'] ?>"/>
+ <?php
+
+ } else {
+ ?>
+ <input type="hidden" id="upload_password" name="upload_password" value=""/>
+ <?php
+
+ }
+ ?>
+ <input type="submit" id="send" value="<?php echo t('Send'); ?>"
+ onclick="
+ document.getElementById('upload').style.display = 'none';
+ document.getElementById('uploading').style.display = '';
+ upload ('<?php echo $cfg['web_root']; ?>', <?php echo jirafeau_get_max_upload_size_bytes(); ?>);
+ "/>
+ </p>
+ </table>
+ </div> </fieldset>
+
+ <?php
+ if (jirafeau_has_upload_password($cfg)) {
+ ?>
+ <form method="post">
+ <input type = "hidden" name = "action" value = "logout"/>
+ <input type = "submit" value = "<?php echo t('Logout'); ?>" />
+ </form>
+ <?php
+
+ }
+ ?>
+
+</div>
+
+<script type="text/javascript" lang="Javascript">
+ document.getElementById('error_pop').style.display = 'none';
+ document.getElementById('uploading').style.display = 'none';
+ document.getElementById('upload_finished').style.display = 'none';
+ document.getElementById('options').style.display = 'none';
+ document.getElementById('send').style.display = 'none';
+ if (!check_html5_file_api ())
+ document.getElementById('max_file_size').innerHTML = '<?php
+ echo t('You browser may not support HTML5 so the maximum file size is ') . jirafeau_get_max_upload_size();
+ ?>';
+</script>
+<?php require(JIRAFEAU_ROOT . 'lib/template/footer.php'); ?>