<script>
function togglePassword(inputId, btn) {
    const input = document.getElementById(inputId);
    if (input.type === 'password') {
        input.type = 'text';
        btn.classList.add('active');
        btn.querySelector('.text').textContent = 'إخفاء كلمة المرور';
    } else {
        input.type = 'password';
        btn.classList.remove('active');
        btn.querySelector('.text').textContent = 'إظهار كلمة المرور';
    }
}
</script><?xml version="1.0" encoding="UTF-8"?>
<?xml-stylesheet type="text/xsl" href="https://sumerplatform.com/wp-sitemap-index.xsl" ?>
<sitemapindex xmlns="http://www.sitemaps.org/schemas/sitemap/0.9"/>
