diff options
author | Jan-Christoph Borchardt <hey@jancborchardt.net> | 2012-12-12 22:40:08 +0100 |
---|---|---|
committer | Jan-Christoph Borchardt <hey@jancborchardt.net> | 2012-12-12 22:40:08 +0100 |
commit | 9d8bdff51b25544bacda1ec13e3e41871547b091 (patch) | |
tree | ece2bad1f346b98035897fe6358af8c1730637b5 /core/templates/installation.php | |
parent | 90e8e949097699f520a13fa1aafc44d9ccd5a02e (diff) | |
download | nextcloud-server-9d8bdff51b25544bacda1ec13e3e41871547b091.tar.gz nextcloud-server-9d8bdff51b25544bacda1ec13e3e41871547b091.zip |
tweak icons for username and password fields, now it’s good
Diffstat (limited to 'core/templates/installation.php')
-rw-r--r-- | core/templates/installation.php | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/core/templates/installation.php b/core/templates/installation.php index 6e36cd3dc26..28fbf29b540 100644 --- a/core/templates/installation.php +++ b/core/templates/installation.php @@ -37,10 +37,12 @@ <p class="infield grouptop"> <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> + <img class="svg" src="<?php echo image_path('', 'actions/user.svg'); ?>" alt="" /> </p> <p class="infield groupbottom"> <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> + <img class="svg" src="<?php echo image_path('', 'actions/password.svg'); ?>" alt="" /> </p> </fieldset> |