Live Preview

Related Templates

UGC Creator Agreement Podcast Guest Agreement Talent Release
`], { type: 'application/msword' }); const link = document.createElement('a'); link.href = URL.createObjectURL(blob); const brandName = getValue('brandName', 'Brand'); const influencerName = getValue('influencerName', 'Influencer'); link.download = `Influencer_Agreement_${brandName.replace(/[^a-zA-Z0-9]/g, '_')}_${influencerName.replace(/[^a-zA-Z0-9]/g, '_')}.doc`; link.click(); } // Initialize document.addEventListener('DOMContentLoaded', function() { const today = new Date().toISOString().split('T')[0]; document.getElementById('campaignStart').value = today; const endDate = new Date(); endDate.setMonth(endDate.getMonth() + 1); document.getElementById('campaignEnd').value = endDate.toISOString().split('T')[0]; togglePaymentFields(); updatePreview(); });