Compare commits
3 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| 4d00178d94 | |||
| 863da32f93 | |||
| b9ad9e922e |
@@ -135,7 +135,15 @@ export default function Signup2() {
|
|||||||
onChange={props.handleChange}/>
|
onChange={props.handleChange}/>
|
||||||
<label className="form-check-label"
|
<label className="form-check-label"
|
||||||
htmlFor="gridCheck">
|
htmlFor="gridCheck">
|
||||||
I accept terms & policy
|
I accept{" "}
|
||||||
|
<a
|
||||||
|
href={process.env.REACT_APP_TERMS_LINK}
|
||||||
|
target="_blank"
|
||||||
|
rel="noopener noreferrer"
|
||||||
|
onClick={(e) => e.stopPropagation()}
|
||||||
|
>
|
||||||
|
terms & policy
|
||||||
|
</a>
|
||||||
</label>
|
</label>
|
||||||
</div>
|
</div>
|
||||||
<span
|
<span
|
||||||
|
|||||||
@@ -34,8 +34,8 @@ const postAuxEnd = (path, postData, media=false) => {
|
|||||||
return axios.post(`${basePath}${path}`, newPostData).then(res => {
|
return axios.post(`${basePath}${path}`, newPostData).then(res => {
|
||||||
return res
|
return res
|
||||||
}).catch(err => {
|
}).catch(err => {
|
||||||
// throw new Error(err.response.data.error_message);
|
throw new Error(err.response.data.error_message);
|
||||||
throw new Error(err);
|
// throw new Error(err);
|
||||||
})
|
})
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user