One-Way NDA Generator / Generador de Acuerdo Unilateral

Create a unilateral confidentiality agreement where one party discloses and the other protects

🔒 One-Way NDA: The Disclosing Party (Parte Divulgadora) shares information, and the Receiving Party (Parte Receptora) agrees to keep it confidential. Common for vendor evaluations and investor pitches.

📄 Live Preview / Vista Previa

`; const blob = new Blob([html], { type: 'application/msword' }); const link = document.createElement('a'); link.href = URL.createObjectURL(blob); link.download = 'One-Way-NDA-Bilingual.doc'; link.click(); } // Reset form function resetForm() { if (confirm('Reset all fields?')) { document.querySelectorAll('input[type="text"], textarea').forEach(el => el.value = ''); document.getElementById('effectiveDate').value = ''; document.getElementById('protectionPeriod').value = '2'; document.getElementById('governingLaw').value = 'california'; document.querySelectorAll('input[type="checkbox"]').forEach(cb => cb.checked = true); updatePreview(); } } // Initialize document.addEventListener('DOMContentLoaded', updatePreview);