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 | |
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')
-rw-r--r-- | core/templates/installation.php | 4 | ||||
-rw-r--r-- | core/templates/login.php | 4 |
2 files changed, 4 insertions, 4 deletions
diff --git a/core/templates/installation.php b/core/templates/installation.php index f7a8a028c4f..6e36cd3dc26 100644 --- a/core/templates/installation.php +++ b/core/templates/installation.php @@ -35,12 +35,12 @@ <fieldset id="adminaccount"> <legend><?php echo $l->t( 'Create an <strong>admin account</strong>' ); ?></legend> <p class="infield grouptop"> - <label for="adminlogin" class="infield"><?php echo $l->t( 'Username' ); ?></label> <input type="text" name="adminlogin" id="adminlogin" value="<?php print OC_Helper::init_var('adminlogin'); ?>" autocomplete="off" autofocus required /> + <label for="adminlogin" class="infield"><?php echo $l->t( 'Username' ); ?></label> </p> <p class="infield groupbottom"> - <label for="adminpass" class="infield"><?php echo $l->t( 'Password' ); ?></label> <input type="password" name="adminpass" id="adminpass" value="<?php print OC_Helper::init_var('adminpass'); ?>" required /> + <label for="adminpass" class="infield"><?php echo $l->t( 'Password' ); ?></label> </p> </fieldset> 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' ); ?>" /> |