summaryrefslogtreecommitdiffstats
path: root/apps
diff options
context:
space:
mode:
authorBjörn Schießle <schiessle@owncloud.com>2013-02-11 10:20:31 +0100
committerBjörn Schießle <schiessle@owncloud.com>2013-02-11 10:20:31 +0100
commitd7d9e2a15a4039d6fbb272a63b17ee9cbd01bf51 (patch)
treec4ea4d0744446c6ee4a8a89c806f0b90c3ed370e /apps
parenta6bd086867a616216fc53b81ed7d41a9cb816c2e (diff)
downloadnextcloud-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.php4
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>