Agregue boton de Ojo para ver contraseña en el login, usando JQuery

This commit is contained in:
2026-04-04 22:58:48 -03:00
parent 8c22563cc1
commit 166fa1c8fa
2 changed files with 84 additions and 32 deletions
+9
View File
@@ -120,3 +120,12 @@ document.addEventListener('DOMContentLoaded', function () {
})
// Ver contraseña, con JQuery
$(document).on('click', '#togglePassword', function () {
const input = $('#passwordInput');
const isPassword = input.attr('type') === 'password';
input.attr('type', isPassword ? 'text' : 'password');
$('#iconShow').toggleClass('hidden', isPassword);
$('#iconHide').toggleClass('hidden', !isPassword);
});