diff options
author | Jan-Christoph Borchardt <JanCBorchardt@fsfe.org> | 2011-08-08 09:47:58 +0200 |
---|---|---|
committer | Jan-Christoph Borchardt <JanCBorchardt@fsfe.org> | 2011-08-08 09:47:58 +0200 |
commit | 51f74d021f9f302a9393af9ed6bbd75a4af45e97 (patch) | |
tree | 4fba71039e50ccb6bef45d52b2946fd31e906b06 /core/templates | |
parent | 41a4fa97b8dca0b64c4e0dcb99be201a7ac69c6f (diff) | |
download | nextcloud-server-51f74d021f9f302a9393af9ed6bbd75a4af45e97.tar.gz nextcloud-server-51f74d021f9f302a9393af9ed6bbd75a4af45e97.zip |
refactoring CSS part 1, input elements
Diffstat (limited to 'core/templates')
-rw-r--r-- | core/templates/login.php | 18 |
1 files changed, 8 insertions, 10 deletions
diff --git a/core/templates/login.php b/core/templates/login.php index 3872e48d11c..6206a8f34e0 100644 --- a/core/templates/login.php +++ b/core/templates/login.php @@ -1,24 +1,22 @@ <div id="login"> <header> - <div class='header'> - <img src="<?php echo image_path('', 'owncloud-logo-medium-white.png'); ?>" alt="ownCloud" /> - </div> + <img src="<?php echo image_path('', 'owncloud-logo-medium-white.png'); ?>" alt="ownCloud" /> </header> - <form action="index.php" method="post" id="login_form"> + <form action="index.php" method="post"> <fieldset> <?php if($_['error']): ?> <?php echo $l->t( 'Login failed!' ); ?> <?php endif; ?> <?php if(empty($_["username"])){?> - <input type="text" name="user" id="user" placeholder="Username" value="" required autofocus /> + <input type="text" name="user" id="user" placeholder="Username" value="" autocomplete="off" required autofocus /> <input type="password" name="password" id="password" placeholder="Password" value="" required /> - <input type="checkbox" name="remember_login"/> <?php echo $l->t('Remember login'); ?> + <input type="checkbox" name="remember_login" id="remember_login" /> <?php echo $l->t('remember'); ?> <?php }else{ ?> - <input type="text" name="user" id="user" placeholder="Username" value="<?php echo $_['username']; ?>" required > - <input type="password" name="password" id="password" value="" placeholder="Password" required autofocus /> - <input type="checkbox" name="remember_login" checked /> <?php echo $l->t('Remember login'); ?> + <input type="text" name="user" id="user" placeholder="Username" value="<?php echo $_['username']; ?>" autocomplete="off" required > + <input type="password" name="password" id="password" placeholder="Password" value="" required autofocus /> + <input type="checkbox" name="remember_login" id="remember_login" checked /> <?php echo $l->t('remember'); ?> <?php } ?> - <input type="submit" value="Log in" /> + <input type="submit" id="submit" value="Log in" /> </fieldset> </form> </div> |