kev kem site b

This commit is contained in:
CHIEFSOFT\ameye
2024-09-08 14:55:21 -04:00
parent ed2c9e57cf
commit ecc428180a
1436 changed files with 250555 additions and 2 deletions
@@ -0,0 +1,21 @@
/*
Template Name: Toner eCommerce + Admin HTML Template
Author: Themesbrand
Website: https://Themesbrand.com/
Contact: Themesbrand@gmail.com
File: Password addon Js File
*/
// password addon
Array.from(document.querySelectorAll("form .auth-pass-inputgroup")).forEach(function (item) {
Array.from(item.querySelectorAll(".password-addon")).forEach(function (subitem) {
subitem.addEventListener("click", function (event) {
var passwordInput = item.querySelector(".password-input");
if (passwordInput.type === "password") {
passwordInput.type = "text";
} else {
passwordInput.type = "password";
}
});
});
});