diff options
author | Morris Jobke <morris.jobke@gmail.com> | 2013-10-07 17:38:27 +0200 |
---|---|---|
committer | Morris Jobke <morris.jobke@gmail.com> | 2013-10-07 17:38:27 +0200 |
commit | 4af220d09e70b63195da2cb90f7556461cf29157 (patch) | |
tree | 1b3f11930dd0408743676cb3e1444840a62554fe /apps/files_sharing/templates | |
parent | b48dffa9a302881e8d1effe9d03bc97e96adc23b (diff) | |
download | nextcloud-server-4af220d09e70b63195da2cb90f7556461cf29157.tar.gz nextcloud-server-4af220d09e70b63195da2cb90f7556461cf29157.zip |
Fix password screen for public shares
* Works in IE8, 9, 10, Firefox 24 and Chromium 30
* Credits to Julian Müller @Julian1998
Diffstat (limited to 'apps/files_sharing/templates')
-rw-r--r-- | apps/files_sharing/templates/authenticate.php | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/apps/files_sharing/templates/authenticate.php b/apps/files_sharing/templates/authenticate.php index 2c89b5df3f6..6b98e6c9f34 100644 --- a/apps/files_sharing/templates/authenticate.php +++ b/apps/files_sharing/templates/authenticate.php @@ -1,12 +1,15 @@ <form action="<?php p($_['URL']); ?>" method="post"> <fieldset> + <?php if (!isset($_['wrongpw'])): ?> + <div class="warning-info"><?php p($l->t('This share is password-protected')); ?></div> + <?php endif; ?> <?php if (isset($_['wrongpw'])): ?> - <div class="warning"><?php p($l->t('The password is wrong. Try again.')); ?></div> + <div class="warning"><?php p($l->t('The password is wrong. Try again.')); ?></div> <?php endif; ?> <p class="infield"> <label for="password" class="infield"><?php p($l->t('Password')); ?></label> <input type="password" name="password" id="password" placeholder="" value="" autofocus /> - <input type="submit" value="<?php p($l->t('Submit')); ?>" /> + <input type="submit" value="" class="svg" /> </p> </fieldset> </form> |