diff options
author | Jan-Christoph Borchardt <hey@jancborchardt.net> | 2012-12-11 18:54:43 +0100 |
---|---|---|
committer | Jan-Christoph Borchardt <hey@jancborchardt.net> | 2012-12-11 18:54:43 +0100 |
commit | 90e8e949097699f520a13fa1aafc44d9ccd5a02e (patch) | |
tree | 53969ed171238b3b65700bf4af01db731a154036 /core/templates/login.php | |
parent | 728ea711b23c796c670559a02701ce0fd1c5851c (diff) | |
download | nextcloud-server-90e8e949097699f520a13fa1aafc44d9ccd5a02e.tar.gz nextcloud-server-90e8e949097699f520a13fa1aafc44d9ccd5a02e.zip |
icons for username and password field, not sure if it’s good
Diffstat (limited to 'core/templates/login.php')
-rw-r--r-- | core/templates/login.php | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/core/templates/login.php b/core/templates/login.php index 5e4e2eb07e6..53e2e9da2ca 100644 --- a/core/templates/login.php +++ b/core/templates/login.php @@ -17,12 +17,12 @@ <?php endif; ?> </ul> <p class="infield grouptop"> - <label for="user" class="infield"><?php echo $l->t( 'Username' ); ?></label> <input type="text" name="user" id="user" value="<?php echo $_['username']; ?>"<?php echo $_['user_autofocus']?' autofocus':''; ?> autocomplete="on" required /> + <label for="user" class="infield"><?php echo $l->t( 'Username' ); ?></label> </p> <p class="infield groupbottom"> - <label for="password" class="infield"><?php echo $l->t( 'Password' ); ?></label> <input type="password" name="password" id="password" value="" required<?php echo $_['user_autofocus']?'':' autofocus'; ?> /> + <label for="password" class="infield"><?php echo $l->t( 'Password' ); ?></label> </p> <input type="checkbox" name="remember_login" value="1" id="remember_login" /><label for="remember_login"><?php echo $l->t('remember'); ?></label> <input type="submit" id="submit" class="login primary" value="<?php echo $l->t( 'Log in' ); ?>" /> |