diff options
author | Christopher Mueller <chrinimue@posteo.me> | 2020-03-31 10:56:59 +0000 |
---|---|---|
committer | Christopher Mueller <chrinimue@posteo.me> | 2020-03-31 10:56:59 +0000 |
commit | b69d76feeedc27a5753ccb6363f666ba9ec121aa (patch) | |
tree | 94197f194178eb9b05175956c63ab907be910a2d /apps/files_sharing/templates | |
parent | dc9df2b7ab908539c3f793108c1c49b764e446f3 (diff) | |
download | nextcloud-server-b69d76feeedc27a5753ccb6363f666ba9ec121aa.tar.gz nextcloud-server-b69d76feeedc27a5753ccb6363f666ba9ec121aa.zip |
Add basic progressbar to public upload page
Signed-off-by: Christopher Mueller <chrinimue@posteo.me>
Diffstat (limited to 'apps/files_sharing/templates')
-rw-r--r-- | apps/files_sharing/templates/public.php | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/apps/files_sharing/templates/public.php b/apps/files_sharing/templates/public.php index a9cfaae9df1..e029279535e 100644 --- a/apps/files_sharing/templates/public.php +++ b/apps/files_sharing/templates/public.php @@ -98,9 +98,8 @@ $maxUploadFilesize = min($upload_max_filesize, $post_max_size); <?php } ?> <input type="file" name="files[]" class="hidden" multiple> - <a href="#" class="button icon-upload"><?php p($l->t('Select or drop files')) ?></a> - <div id="drop-upload-progress-indicator" style="padding-top: 25px;" class="hidden"><?php p($l->t('Uploading files…')) ?></div> + <div id="drop-upload-progress-indicator" style="padding-top: 25px;" class="hidden"><?php p($l->t('Uploading files')) ?></div> <div id="drop-upload-done-indicator" style="padding-top: 25px;" class="hidden"><?php p($l->t('Uploaded files:')) ?></div> <ul id="drop-uploaded-files"></ul> |