1$("body").on('click', '.toggle-password', function() {
2 $(this).toggleClass("fa-eye fa-eye-slash");
3 var input = $("#pass_log_id");
4 if (input.attr("type") === "password") {
5 input.attr("type", "text");
6 } else {
7 input.attr("type", "password");
8 }
9
10});