diff options
author | Lukas Reschke <lukas@statuscode.ch> | 2013-03-04 13:31:21 -0800 |
---|---|---|
committer | Lukas Reschke <lukas@statuscode.ch> | 2013-03-04 13:31:21 -0800 |
commit | fdb37d191b930e891302de22b91138d5ca864132 (patch) | |
tree | 3bcab819342852f8b0b19d2c7e5b055fdf47b1af /apps | |
parent | 33c62bf11032e93d25eea8f593cf07d275e6480a (diff) | |
parent | 07dee24cb29bd6fd49e26094b28d6506eaf3e96c (diff) | |
download | nextcloud-server-fdb37d191b930e891302de22b91138d5ca864132.tar.gz nextcloud-server-fdb37d191b930e891302de22b91138d5ca864132.zip |
Merge pull request #2092 from owncloud/infieldlabels-placeholder
explicitly add empty placeholder to inputs which use infield labels
Diffstat (limited to 'apps')
-rw-r--r-- | apps/files_sharing/templates/authenticate.php | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/apps/files_sharing/templates/authenticate.php b/apps/files_sharing/templates/authenticate.php index b6ef82da6f0..7a67b6e5503 100644 --- a/apps/files_sharing/templates/authenticate.php +++ b/apps/files_sharing/templates/authenticate.php @@ -2,8 +2,8 @@ <fieldset> <p class="infield"> <label for="password" class="infield"><?php p($l->t('Password')); ?></label> - <input type="password" name="password" id="password" value="" autofocus /> + <input type="password" name="password" id="password" placeholder="" value="" autofocus /> <input type="submit" value="<?php p($l->t('Submit')); ?>" /> </p> </fieldset> -</form>
\ No newline at end of file +</form> |