summaryrefslogtreecommitdiffstats
path: root/core/templates
diff options
context:
space:
mode:
authorJan-Christoph Borchardt <hey@jancborchardt.net>2015-10-30 11:11:37 +0100
committerJan-Christoph Borchardt <hey@jancborchardt.net>2015-10-30 11:11:37 +0100
commita05ea0fb1eac58e313b1acde1d15356539490c4e (patch)
treec7edd3dc2a003a3f59b41e70698fdaecaadf6d9e /core/templates
parentf000edb63619d31745bee0fed460fcf84256ab3d (diff)
downloadnextcloud-server-a05ea0fb1eac58e313b1acde1d15356539490c4e.tar.gz
nextcloud-server-a05ea0fb1eac58e313b1acde1d15356539490c4e.zip
remove unneeded icons from input fields to not distract from submit button, fix #18940
Diffstat (limited to 'core/templates')
-rw-r--r--core/templates/installation.php2
-rw-r--r--core/templates/login.php2
2 files changed, 0 insertions, 4 deletions
diff --git a/core/templates/installation.php b/core/templates/installation.php
index 716cb1af6af..191acf0b85d 100644
--- a/core/templates/installation.php
+++ b/core/templates/installation.php
@@ -43,7 +43,6 @@ script('core', [
value="<?php p($_['adminlogin']); ?>"
autocomplete="off" autocapitalize="off" autocorrect="off" autofocus required>
<label for="adminlogin" class="infield"><?php p($l->t( 'Username' )); ?></label>
- <img class="svg" src="<?php p(image_path('', 'actions/user.svg')); ?>" alt="">
</p>
<p class="groupbottom">
<input type="password" name="adminpass" data-typetoggle="#show" id="adminpass"
@@ -51,7 +50,6 @@ script('core', [
value="<?php p($_['adminpass']); ?>"
autocomplete="off" autocapitalize="off" autocorrect="off" required>
<label for="adminpass" class="infield"><?php p($l->t( 'Password' )); ?></label>
- <img class="svg" id="adminpass-icon" src="<?php print_unescaped(image_path('', 'actions/password.svg')); ?>" alt="">
<input type="checkbox" id="show" name="show">
<label for="show" class="svg"></label>
<div class="strengthify-wrapper"></div>
diff --git a/core/templates/login.php b/core/templates/login.php
index b21b6e3d493..03be6258fdf 100644
--- a/core/templates/login.php
+++ b/core/templates/login.php
@@ -45,7 +45,6 @@ script('core', [
<?php p($_['user_autofocus'] ? 'autofocus' : ''); ?>
autocomplete="on" autocapitalize="off" autocorrect="off" required>
<label for="user" class="infield"><?php p($l->t('Username')); ?></label>
- <img class="svg" src="<?php print_unescaped(image_path('', 'actions/user.svg')); ?>" alt=""/>
</p>
<p class="groupbottom">
@@ -54,7 +53,6 @@ script('core', [
<?php p($_['user_autofocus'] ? '' : 'autofocus'); ?>
autocomplete="on" autocapitalize="off" autocorrect="off" required>
<label for="password" class="infield"><?php p($l->t('Password')); ?></label>
- <img class="svg" id="password-icon" src="<?php print_unescaped(image_path('', 'actions/password.svg')); ?>" alt=""/>
<input type="submit" id="submit" class="login primary icon-confirm svg" title="<?php p($l->t('Log in')); ?>" value="" disabled="disabled"/>
</p>