diff options
author | Björn Schießle <schiessle@owncloud.com> | 2013-02-11 10:20:31 +0100 |
---|---|---|
committer | Björn Schießle <schiessle@owncloud.com> | 2013-02-11 10:20:31 +0100 |
commit | d7d9e2a15a4039d6fbb272a63b17ee9cbd01bf51 (patch) | |
tree | c4ea4d0744446c6ee4a8a89c806f0b90c3ed370e /apps | |
parent | a6bd086867a616216fc53b81ed7d41a9cb816c2e (diff) | |
download | nextcloud-server-d7d9e2a15a4039d6fbb272a63b17ee9cbd01bf51.tar.gz nextcloud-server-d7d9e2a15a4039d6fbb272a63b17ee9cbd01bf51.zip |
fix positioning of password label, add autofocus to password field
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 9695caebf18..6bce6857ac8 100644 --- a/apps/files_sharing/templates/authenticate.php +++ b/apps/files_sharing/templates/authenticate.php @@ -1,8 +1,8 @@ <form action="<?php echo $_['URL']; ?>" method="post"> <fieldset> - <p> + <p class="infield"> <label for="password" class="infield"><?php echo $l->t('Password'); ?></label> - <input type="password" name="password" id="password" value="" /> + <input type="password" name="password" id="password" value="" autofocus /> <input type="submit" value="<?php echo $l->t('Submit'); ?>" /> </p> </fieldset> |