💻 Contractor NDA / Соглашение о Конфиденциальности для Подрядчика

Generate a bilingual NDA for freelancers, consultants, and independent contractors with IP assignment and work product ownership clauses.

🏢 Company Information / Информация о компании

👤 Contractor Information / Информация о подрядчике

🔒 IP & Work Product / ИС и результаты работ

⚗️ Terms / Условия

📄 Live Preview / Предпросмотр

`; const blob = new Blob([html], { type: 'application/msword' }); const link = document.createElement('a'); link.href = URL.createObjectURL(blob); link.download = 'Contractor-NDA-Russian-English.doc'; link.click(); } function resetForm() { if (confirm('Reset all fields? / Сбросить все поля?')) { document.querySelectorAll('input[type="text"], textarea').forEach(el => el.value = ''); document.getElementById('effectiveDate').value = ''; updatePreview(); } } document.addEventListener('DOMContentLoaded', updatePreview);