Agregue boton de Ojo para ver contraseña en el login, usando JQuery
This commit is contained in:
@@ -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);
|
||||
});
|
||||
Reference in New Issue
Block a user