document.addEventListener(« DOMContentLoaded », function() {
const buttons = document.querySelectorAll(‘button.show-password-input’);
buttons.forEach(button => {
button.textContent = ‘Montrer’;
button.style.color = ‘#FFFFFF’;
button.style.backgroundColor = ‘#7ac700’;
button.style.border = ‘none’;
button.style.width = ’60px’;
button.style.height = ’30px’;
button.style.fontSize = ’12px’;
button.style.cursor = ‘pointer’;
});
});