first commit

This commit is contained in:
2024-11-09 08:52:49 +07:00
commit 2450f9f42a
90 changed files with 16323 additions and 0 deletions

10
Html/html/login.js Normal file
View File

@@ -0,0 +1,10 @@
function showPasswordLogin() {
const show = document.getElementById('login_password').type;
if (show === 'password') {
document.getElementById('login_password').type = 'text';
document.getElementById('buttonShowPasswordLogin').className = 'fa-solid fa-eye-slash';
} else {
document.getElementById('login_password').type = 'password';
document.getElementById('buttonShowPasswordLogin').className = 'fa-solid fa-eye';
}
}