refonte arborescence + correction des chemins

This commit is contained in:
ben
2025-12-09 17:14:35 +01:00
parent f0fbae505f
commit f79ee1e7b6
40 changed files with 185 additions and 144 deletions

View File

@@ -0,0 +1,35 @@
const password = document.getElementById('password');
const confirmPassword = document.getElementById('confirmPassword');
const showPasswordCheckbox = document.getElementById('showPassword');
showPasswordCheckbox.addEventListener('change', function() {
if (this.checked) {
password.type = 'text';
confirmPassword.type = 'text';
} else {
password.type = 'password';
confirmPassword.type = 'password';
}
});