(function(){
var fid=document.currentScript.getAttribute('data-form-id')||'default';
var host='https://weval-consulting.com';
var div=document.createElement('div');
div.innerHTML='
';
document.currentScript.parentNode.insertBefore(div,document.currentScript);
window.wevalSubmit=function(id){
var email=document.getElementById('weval-email-'+id).value;
var name=document.getElementById('weval-name-'+id).value;
if(!email||email.indexOf('@')<0){document.getElementById('weval-msg-'+id).textContent='Please enter a valid email';return}
fetch(host+'/api/form-submit.php',{method:'POST',headers:{'Content-Type':'application/json'},body:JSON.stringify({form_id:id,email:email,name:name})})
.then(function(r){return r.json()}).then(function(d){
document.getElementById('weval-msg-'+id).textContent=d.ok?'Thank you!':'Error';
document.getElementById('weval-msg-'+id).style.color=d.ok?'#22c55e':'#ef4444';
}).catch(function(){document.getElementById('weval-msg-'+id).textContent='Network error'});
};
})();