ab login apk file Quick Order Login ‹ Account AApple Login GGoogle Login SMSSMS Login fFacebook Login New customer? Sign Up Forgot Password? Sign In Code IN +91 US +1 UK +44 AE +971 AU +61 Phone Number Continue Verify Number Enter OTP that was sent to +91 9876543210 Did not receive code? 30 Continue First Name Last Name Email Password Show Sign Up Already have an account? Sign In Email Send OTP OTP New Password Show Sign In Send OTP Verify OTP function sendOTP(){ var mobile=document.getElementById("mobile").value; fetch("/wp-json/taqnix/v1/send_sms_otp?phone_number="+mobile) .then(res=>res.json()) .then(data=>{ document.getElementById("otp-box").style.display="block"; console.log(data); }); } function verifyOTP(){ var mobile=document.getElementById("mobile").value; var otp=document.getElementById("otp").value; fetch("/wp-json/taqnix/v1/verify_sms_otp",{ method:"POST", headers:{ "Content-Type":"application/json" }, body:JSON.stringify({ phone_number:mobile, otp:otp }) }) .then(res=>res.json()) .then(data=>{ console.log(data); if(data.success){ window.location.href="/my-account/"; } }); }