Privacy Policy & Terms Generator

Generate legal pages for your website in seconds.

Disclaimer: This is a template generator only, not legal advice. Please consult a lawyer for compliance with applicable laws.

Your Information

What does your website do?

Generate Document

Preview

Fill in the form and click "Generate Document"

${generatedContent} `; const blob = new Blob([fullHtml], { type: 'text/html' }); const a = document.createElement('a'); a.href = URL.createObjectURL(blob); a.download = `${selectedDocType}-policy.html`; a.click(); showToast('Downloaded HTML!', 'success'); }); // Download TXT document.getElementById('download-txt-btn').addEventListener('click', () => { if (!generatedContent) { showToast('Generate a document first', 'error'); return; } const temp = document.createElement('div'); temp.innerHTML = generatedContent; const text = temp.textContent || temp.innerText; const blob = new Blob([text], { type: 'text/plain' }); const a = document.createElement('a'); a.href = URL.createObjectURL(blob); a.download = `${selectedDocType}-policy.txt`; a.click(); showToast('Downloaded TXT!', 'success'); }); })();