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