diff options
author | Jan-Christoph Borchardt <hey@jancborchardt.net> | 2014-05-06 12:43:52 +0200 |
---|---|---|
committer | Morris Jobke <morris.jobke@gmail.com> | 2014-06-03 15:30:09 +0200 |
commit | 4ef94ddd2eb87afe4cd8a0de3b70f32bbd9328fc (patch) | |
tree | 586eb6422705d2ce7e9f5e792cb7d7a43588caf0 /apps | |
parent | 4ca665ac10978216be91b58f395b0dd00f4b9540 (diff) | |
download | nextcloud-server-4ef94ddd2eb87afe4cd8a0de3b70f32bbd9328fc.tar.gz nextcloud-server-4ef94ddd2eb87afe4cd8a0de3b70f32bbd9328fc.zip |
infield label removal: remove last occurences of infield labels
Diffstat (limited to 'apps')
-rw-r--r-- | apps/files_sharing/css/authenticate.css | 7 | ||||
-rw-r--r-- | apps/files_sharing/templates/authenticate.php | 4 |
2 files changed, 2 insertions, 9 deletions
diff --git a/apps/files_sharing/css/authenticate.css b/apps/files_sharing/css/authenticate.css index ef963ba7c65..a5aa55632bb 100644 --- a/apps/files_sharing/css/authenticate.css +++ b/apps/files_sharing/css/authenticate.css @@ -1,10 +1,3 @@ -#body-login form label.infield { - width: 190px; - padding: 10px; - left: 8px; - top: 8px; -} - #password { width: 190px !important; padding: 10px; diff --git a/apps/files_sharing/templates/authenticate.php b/apps/files_sharing/templates/authenticate.php index 055329ecabf..f899a54e0f9 100644 --- a/apps/files_sharing/templates/authenticate.php +++ b/apps/files_sharing/templates/authenticate.php @@ -6,10 +6,10 @@ <?php if (isset($_['wrongpw'])): ?> <div class="warning"><?php p($l->t('The password is wrong. Try again.')); ?></div> <?php endif; ?> - <p class="infield"> + <p> <label for="password" class="infield"><?php p($l->t('Password')); ?></label> <input type="password" name="password" id="password" - placeholder="" value="" + placeholder="<?php p($l->t('Password')); ?>" value="" autocomplete="off" autocapitalize="off" autocorrect="off" autofocus /> <input type="submit" value="" class="svg icon-confirm" /> |