Get in touch with us!

You have questions? You want to work with us? No problem! Please fill the following form and we will answer shortly.

TSPLUS IS TRUSTED BY OVER 500,000+ COMPANIES

huawei logo reference oracle logo reference siemens logo reference
Your message has been submitted.
We will get back to you shortly.
Something went wrong.
Please reload the page and try again.

Documentation

Everything you need to know to install, get started, setup and deploy our software.

Common Questions & Answers

Check our knowledge base to find the answers to the most frequently asked questions.

TSplus Helpdesk

Open a ticket to directly get in touch with our support team and get help.

function onSubmit(token) { const form = document.getElementById("wf-form-Contact-Form"); const formData = new FormData(form); // Change the submit button style and text const submitButton = form.querySelector('button[type="submit"]'); submitButton.innerHTML = submitButton.getAttribute('data-wait'); submitButton.style.backgroundImage = 'linear-gradient(to right, #e5e7eb, #e5e7eb)'; submitButton.style.color = '#6b7280'; submitButton.style.cursor = 'default'; fetch(form.action, { method: form.method, body: formData, }) .then(response => { if (response.ok) { // Success response: Show the confirmation message form.style.display = 'none'; document.getElementById('confirmation-message').style.display = 'block'; } else { // HTTP error response: Show the error message form.style.display = 'none'; document.getElementById('form-error-message').style.display = 'block'; } }) .catch(error => { // Network or other error: Show the error message console.error('Error:', error); form.style.display = 'none'; document.getElementById('form-error-message').style.display = 'block'; }); } back to top of the page icon