register js - Remove unused function

This commit is contained in:
Matthew Patrick 2021-11-14 04:59:00 +07:00
parent c3f59d54a2
commit d200816965

View file

@ -5,13 +5,4 @@ function revealhidePassword() {
} else {
x.type = "password";
}
}
function revealhideConfirmationPassword() {
const x = document.getElementById("password_confirmation");
if (x.type === "password") {
x.type = "text";
} else {
x.type = "password";
}
}