Contactez-nous et discutons de votre projet

Par email :

En complétant le formulaire, un consultant convivialité vous répondra sous 2H.

Par téléphone :

Du lundi au jeudi de 9H à 18H et le vendredi de 9H à 17H au 0820 00 10 30 (0,095 € ht/min)

 

Contactez-nous
et discutons de votre projet

Par email :

En complétant le formulaire, un consultant convivialité vous répondra sous 2H.

Par téléphone :

Du lundi au jeudi de 9H à 18H et le vendredi de 9h à 17h au 0 820 00 10 30 (0.095€ ht/min)

Siège Paris

0 820 00 10 30(0.095€ ht/min)

contact@justeatemps.com

Lundi au jeudi : 9h à 18h

Vendredi : 9h à 17h

Agence Lyon

Lundi au jeudi : 9h à 18h

Vendredi : 9h à 17h

Agence Belgique

Lundi au jeudi : 9h à 18h

Vendredi : 9h à 17h

/******* Do not edit this file ******* Simple Custom CSS and JS - by Silkypress.com Saved: Feb 08 2021 | 19:26:24 */ var champ_nom = document.getElementById("form-field-name"); var champ_email = document.getElementById("form-field-field_3"); var champ_telephone = document.getElementById("form-field-field_4"); var champ_entreprise = document.getElementById("form-field-field_2"); champ_nom.onchange = function (){ if (ValidateNom(champ_nom.value)){ champ_nom.style.border = 'solid 2px'; champ_nom.style.borderColor = 'green'; } else { champ_nom.style.border = 'solid 2px'; champ_nom.style.borderColor = 'red'; } } champ_email.onchange = function (){ if (ValidateEmail(champ_email.value)){ champ_email.style.border = 'solid 2px'; champ_email.style.borderColor = 'green'; } else { champ_email.style.border = 'solid 2px'; champ_email.style.borderColor = 'red'; } } champ_telephone.onchange = function (){ if (ValidateNumber(champ_telephone.value)){ champ_telephone.style.border = 'solid 2px'; champ_telephone.style.borderColor = 'green'; } else { champ_telephone.style.border = 'solid 2px'; champ_telephone.style.borderColor = 'red'; } } champ_entreprise.onchange = function (){ if (champ_entreprise.value == ''){ champ_entreprise.style.border = 'solid 2px'; champ_entreprise.style.borderColor = 'red'; } else { champ_entreprise.style.border = 'solid 2px'; champ_entreprise.style.borderColor = 'green'; } } function ValidateEmail(mail) { if (/^\w+([\.-]?\w+)*@\w+([\.-]?\w+)*(\.\w{2,3})+$/.test(mail)) { return (true) } return (false) } function ValidateNumber(number) { if (/^[0-9]+$/.test(number)) return (true) else return (false) } function ValidateNom(nom) { if (/^[a-zA-Z]+([ \-']?[a-zA-Z]+[ \-']?[a-zA-Z]+[ \-']?)[a-zA-Z]+$/.test(nom)) return (true) else return (false) }