Loading src/signup/CaptchaForm.vue +5 −0 Original line number Diff line number Diff line Loading @@ -89,6 +89,11 @@ export default { captchaInput: this.formData.captchaInput, bypassToken: this.$route.query.bypassToken || null, } const urlParams = new URLSearchParams(window.location.search); const myParam = urlParams.get('bypassToken'); /* eslint-disable no-console */ console.log("here is the value of bypassToken") console.log(myParam) const url = generateUrl(`/apps/${this.appName}/accounts/verify_captcha`) await Axios.post(url, data) const isFormValid = true Loading Loading
src/signup/CaptchaForm.vue +5 −0 Original line number Diff line number Diff line Loading @@ -89,6 +89,11 @@ export default { captchaInput: this.formData.captchaInput, bypassToken: this.$route.query.bypassToken || null, } const urlParams = new URLSearchParams(window.location.search); const myParam = urlParams.get('bypassToken'); /* eslint-disable no-console */ console.log("here is the value of bypassToken") console.log(myParam) const url = generateUrl(`/apps/${this.appName}/accounts/verify_captcha`) await Axios.post(url, data) const isFormValid = true Loading