script>
$(document).ready(function () {
var iconUser = '
';
var iconKey = '
';
$('.wrapper2').append(iconUser + iconKey);
});
$(".showp").hide();
function showPass() {
var inputPass = document.getElementById('navbar_password');
if (inputPass.type === "password") {
inputPass.type = "text";
document.getElementById('show-pass-icon').innerHTML = '
';
} else {
inputPass.type = "password";
document.getElementById('show-pass-icon').innerHTML = `
`;
}
}