Contact Us

Whether you have questions about colocation or you’re ready to move your on-site servers to a data center, we’re here to help! Get in touch today.

Contact us if you have questions

GET RACK’N

Please fill in the following fields

    '; function resetButtons() { submitBtns.forEach(function(btn) { btn.disabled = false; btn.innerHTML = btn.dataset.originalText || btn.innerHTML; }); isSubmitting = false; } if (typeof grecaptcha !== 'undefined') { grecaptcha.ready(function() { grecaptcha.execute('6LePh-0rAAAAAKDnMRpoGFI_IKz2uumg4v-Jo0CE', {action: 'submit'}).then(function(token) { var input = document.createElement('input'); input.type = 'hidden'; input.name = 'g-recaptcha-response'; input.value = token; form.appendChild(input); sendForm(form, responseDiv, resetButtons); }); }); } else { sendForm(form, responseDiv, resetButtons); } }); function sendForm(form, responseDiv, resetButtons) { fetch(form.action, { method: 'POST', body: new FormData(form) }) .then(function(response) { if (response.status === 200) { responseDiv.innerHTML = '
    Form submitted successfully!
    '; form.reset(); // Keep buttons disabled on success — form is done } else { responseDiv.innerHTML = '
    Submission failed. Server returned ' + response.status + '
    '; resetButtons(); // Re-enable on error so user can retry } }) .catch(function(error) { responseDiv.innerHTML = '
    Form submitted successfully!
    '; form.reset(); console.error('Form submit error (ignored due to CORS):', error); // Keep buttons disabled — treating as success }); } })();