Improve login page

This commit is contained in:
Jose Gonzalez 2023-02-20 11:47:56 +01:00
parent 333a93fad2
commit 47c2b62029
2 changed files with 0 additions and 14 deletions

View File

@ -309,7 +309,6 @@ switch ($login_screen) {
false,
true
);
echo '<div id="show-hide-pass"></div>';
echo '</div>';
echo '<div class="login_button">';
html_print_submit_button(
@ -924,18 +923,6 @@ html_print_div(['id' => 'forced_title_layer', 'class' => 'forced_title_layer', '
}
$(document).ready(function () {
$('#show-hide-pass').click(function (e) {
let inputPass = this.previousElementSibling;
if (inputPass.type === "password") {
inputPass.type = "text";
inputPass.style.backgroundImage = "url('<?php echo $config['homeurl_static']; ?>/images/eye-closed-input.png')";
} else {
inputPass.type = "password";
inputPass.style.backgroundImage = "url('<?php echo $config['homeurl_static']; ?>/images/eye-open-input.png')";
}
});
$('#submit-login_button span').removeAttr('style');
$('#spinner_login').hide();
});

View File

@ -216,7 +216,6 @@ div.login_button button span {
}
div.login_pass input {
background-image: url("../../images/eye-open-input.png");
padding-right: 40px;
}