diff options
author | Lukas Reschke <lukas@owncloud.com> | 2016-06-10 14:47:40 +0200 |
---|---|---|
committer | Lukas Reschke <lukas@owncloud.com> | 2016-06-10 14:47:40 +0200 |
commit | 54e2ac57130666add0ad5d3c583c6f29527b4ebc (patch) | |
tree | 5c284d00ebd7daed6584dcc4922211223cd6d274 /apps/files_sharing/templates | |
parent | c49402d26640df2adfdf3201cfc9c4c1456b7a66 (diff) | |
download | nextcloud-server-54e2ac57130666add0ad5d3c583c6f29527b4ebc.tar.gz nextcloud-server-54e2ac57130666add0ad5d3c583c6f29527b4ebc.zip |
Add text about uploaded files
Diffstat (limited to 'apps/files_sharing/templates')
-rw-r--r-- | apps/files_sharing/templates/public.php | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/apps/files_sharing/templates/public.php b/apps/files_sharing/templates/public.php index 35adb240022..c15001ad24b 100644 --- a/apps/files_sharing/templates/public.php +++ b/apps/files_sharing/templates/public.php @@ -135,7 +135,9 @@ $maxUploadFilesize = min($upload_max_filesize, $post_max_size); <p><span class="icon-folder"></span> <?php p($_['filename']) ?></p> <input type="file" name="files[]" class="hidden" multiple> - <a href="#" class="button icon-upload"><?php p($l->t('Select')) ?></a> + <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-done-indicator" style="padding-top: 25px;" class="hidden"><?php p($l->t('Uploaded files:')) ?></div> <ul> </ul> </div> |