+44 (0) 1603 937800 — Mon to Fri, 9am to 5pm UK time
A - A - A

The Tracing Group obtains ISO 27001

Danielle Higgins    31st July, 2017

As of 25th July 2017 The Tracing Group are proud to announce that they have received ISO 27001 accreditation. Danielle Higgins, the company's founder said, "this has been achieved through the hard work, professionalism and dedication of our staff and shows how seriously The Tracing Group takes its responsibility towards client data. We will continue to build on this milestone". 

function submitForm(formId) { const form = document.getElementById(formId); const formData = new FormData(form); fetch('/api/contact', { method: 'POST', body: formData }) .then(response => { if(response.ok) { form.classList.remove('fail'); form.classList.remove('ratelimit'); form.classList.add('success'); form.reset(); } else if(response.status == 429) { form.classList.remove('success'); form.classList.remove('fail'); form.classList.add('ratelimit'); } else { form.classList.remove('success'); form.classList.remove('ratelimit'); form.classList.add('fail'); } }) }