Registration Form Own a Jumboking Franchise
fetch(“/wp-admin/admin-ajax.php?action=send_otp”, {
method: “POST”,
headers: {“Content-Type”:”application/x-www-form-urlencoded”},
body: “phone=” + encodeURIComponent(phoneInput.value)
})
fetch(“/wp-admin/admin-ajax.php?action=verify_otp”, {
method: “POST”,
headers: {“Content-Type”:”application/x-www-form-urlencoded”},
body: “phone=” + encodeURIComponent(phoneInput.value) + “&otp=” + encodeURIComponent(otp)
})