This commit is contained in:
KANE LAZENI 2026-05-13 16:45:47 +00:00
parent 8e6413c28c
commit aa734471f8

View File

@ -867,8 +867,8 @@
}),
dataType: 'json',
success: function(data) {
alert("success");
console.log(data);
alert("success => "+data);
console.log("success => "+data);
if (data.success && data.match) {
showSuccess(data);
} else {
@ -876,8 +876,8 @@
}
},
error: function(xhr, status, error) {
alert(error);
console.log(error);
alert("error => "+error);
console.log("error => "+error);
showError('Erreur lors de la vérification AJAX: ' + error);
}
});