Coropos Web Services Logo

📋 Policy Center

Dashboard

📋 Policy Center

Access our comprehensive policies and legal documents. We believe in transparency and want you to understand how we operate, protect your data, and maintain our services.

Terms of Service

Loading policy content...

Last Updated: Loading...

Effective Date: Loading...

Need Help?

Have questions about our policies or need clarification on any terms? We're here to help.

Contact Support

Get help with any policy questions

info@coroposws.com

Legal Inquiries

For legal and compliance matters

legal@coroposws.com

Report Issues

Report policy violations or concerns

Report Here
`); printWindow.document.close(); printWindow.print(); } downloadPolicy() { const policy = this.policies[this.currentPolicy]; const content = this.elements.policyContent.textContent; const blob = new Blob([content], { type: 'text/plain' }); const url = URL.createObjectURL(blob); const a = document.createElement('a'); a.href = url; a.download = `${policy.title.replace(/\s+/g, '_').toLowerCase()}_coropos_web_services.txt`; document.body.appendChild(a); a.click(); document.body.removeChild(a); URL.revokeObjectURL(url); this.showNotification('Policy downloaded as text file. PDF generation coming soon!', 'info'); } showNotification(message, type = 'info') { const notification = document.createElement('div'); notification.className = `fixed top-24 right-6 px-6 py-4 rounded-lg shadow-lg z-50 transition-all transform translate-x-full`; const bgColor = type === 'error' ? 'bg-red-500' : type === 'success' ? 'bg-green-500' : 'bg-blue-500'; notification.classList.add(bgColor, 'text-white'); notification.innerHTML = `
${message}
`; document.body.appendChild(notification); setTimeout(() => { notification.classList.remove('translate-x-full'); }, 100); setTimeout(() => { notification.classList.add('translate-x-full'); setTimeout(() => { if (notification.parentElement) { notification.remove(); } }, 300); }, 5000); } } // Initialize the policy manager window.policyManager = new PolicyManager();