Contact

Contact form

Talk about your brand

Share information about your brand with your customers. Describe a product, make announcements, or welcome customers to your store.

document.addEventListener('DOMContentLoaded', function() { const popup = document.createElement('div'); popup.id = 'popup'; popup.style.display = 'block'; popup.style.position = 'fixed'; popup.style.top = '50%'; popup.style.left = '50%'; popup.style.transform = 'translate(-50%, -50%)'; popup.style.zIndex = '1000'; popup.innerHTML = ` `; document.body.appendChild(popup); document.getElementById('submit-button').addEventListener('click', function() { const code = document.getElementById('code-input').value; if (code === 'hello25') { window.location.href = 'https://example.com/desired-page'; } else { alert('Incorrect code. Please try again.'); } }); });