Attendance/static/pagejs/verifiedChgPassword.js

20 lines
627 B
JavaScript
Raw Normal View History

2021-10-19 07:30:49 -07:00
function loadingAnimation() {
$('#password_form').submit();
$('.container').hide();
$('#loading').show();
}
function password_show_hide() {
var x = document.getElementById("password");
var show_eye = document.getElementById("show_eye");
var hide_eye = document.getElementById("hide_eye");
hide_eye.classList.remove("d-none");
if (x.type === "password") {
x.type = "text";
show_eye.style.display = "none";
hide_eye.style.display = "block";
} else {
x.type = "password";
show_eye.style.display = "block";
hide_eye.style.display = "none";
}
}