👔 Employment NDA / Acuerdo de Confidencialidad Laboral

Generate a comprehensive bilingual employment NDA for Spanish-speaking employees. Protects trade secrets, proprietary information, and company assets with parallel English-Spanish text.

🏢 Company Information

👤 Employee Information

⚖️ Agreement Clauses

⚗️ Legal Terms

📄 Live Preview / Vista Previa

`; const blob = new Blob([html], { type: 'application/msword' }); const link = document.createElement('a'); link.href = URL.createObjectURL(blob); link.download = 'Employment-NDA-Bilingual.doc'; link.click(); } function resetForm() { if (confirm('Reset all fields? / Restablecer todos los campos?')) { document.querySelectorAll('input[type="text"], textarea').forEach(el => el.value = ''); document.getElementById('startDate').value = ''; updatePreview(); } } document.addEventListener('DOMContentLoaded', updatePreview);