version 1.94, 2024/03/31 16:50:24 |
version 1.99, 2024/04/01 19:04:36 |
Line 43 async function sendData() { |
|
Line 43 async function sendData() { |
|
if(erro) { |
if(erro) { |
info.textContent="One or more fields have an error. Please check and try again." |
info.textContent="One or more fields have an error. Please check and try again." |
} else { |
} else { |
var fcon = document.querySelectorAll(".wpcf7-form-control"), |
var fcon = document.querySelectorAll(".wpcf7-form-control"); |
|
|
info.textContent="Verifying..." |
info.textContent="Verifying..." |
fcon.forEach((f) => { |
fcon.forEach((f) => { |
Line 58 async function sendData() { |
|
Line 58 async function sendData() { |
|
'response-field': false, |
'response-field': false, |
sitekey: '0x4AAAAAAAVpXFEy152AON1L', |
sitekey: '0x4AAAAAAAVpXFEy152AON1L', |
'error-callback': function(e) { |
'error-callback': function(e) { |
info.textContent="Verification error. Try again later." |
info.textContent="Verification error. Try again later."; |
turnstile.remove(); |
turnstile.remove(); |
}, |
}, |
callback: function(token) { |
callback: function(token) { |
const data = JSON.stringify({"add": mail, "sub": subj, "msg": mess, "tok": token}); |
const data = JSON.stringify({"add": mail, "sub": subj, "msg": mess, "tok": token}); |
turnstile.remove(); |
|
info.textContent="Sending..."; |
info.textContent="Sending..."; |
console.log(data); |
// console.log(data); |
// fetch("/feedbk/", { |
fetch("/feedbk/", { |
// headers: { "Content-Type": "application/json" }, |
headers: { "Content-Type": "application/json" }, |
// credentials: "same-origin", |
credentials: "same-origin", |
// mode: "same-origin", |
mode: "same-origin", |
// method: "post", |
method: "post", |
// body: data |
body: data |
// }) |
}) |
// .then(response => response.json()) |
.then(response => response.json()) |
// .then(json => info.textContent=json['msg']) |
.then(json => info.textContent=parseString(json['msg'])) |
|
.then(turnstile.remove()); |
} |
} |
}); |
}); |
}); |
}); |