|
|
@ -5,6 +5,7 @@ |
|
|
|
<p class="tw-body-3 tw-text-neutral-400 tw-mb-[16px] md:tw-mb-[12px]"> |
|
|
|
{{ $t("Welcome to ShowEasy!") }} |
|
|
|
</p> |
|
|
|
|
|
|
|
<p class="tw-body-3 tw-mb-[45px] md:tw-mb-[32px]"> |
|
|
|
{{ $t("Already have an account?") }} |
|
|
|
<nuxt-link :to="localePath('/user')" class="primary--text text-decoration-none">{{ $t("Login") }}</nuxt-link> |
|
|
@ -31,6 +32,7 @@ |
|
|
|
<p class="title">{{ $t("Sign up with Email") }}</p> |
|
|
|
<p class="neutrals--text text--darken-3 text-size-14"> |
|
|
|
{{ $t("Welcome to ShowEasy!") }} |
|
|
|
{{ errorDialog }} |
|
|
|
</p> |
|
|
|
<v-form v-model="valid"> |
|
|
|
<v-text-field v-model="userData.FirstName" background-color="neutrals darken-1" |
|
|
@ -184,6 +186,10 @@ export default { |
|
|
|
) |
|
|
|
.then((response) => { |
|
|
|
//console.log(JSON.stringify(response)); |
|
|
|
if(response.data.STATUSCODE == "400"){ |
|
|
|
this.errorDialog = true; |
|
|
|
this.isPageLoading = false; |
|
|
|
} |
|
|
|
if(response && response.data && response.data.DATA && response.data.DATA.rel){ |
|
|
|
let data = response.data.DATA.rel |
|
|
|
if(data){ |
|
|
@ -203,8 +209,6 @@ export default { |
|
|
|
.catch((err) => { |
|
|
|
|
|
|
|
console.log(err); |
|
|
|
this.errorDialog = true; |
|
|
|
this.isPageLoading = false; |
|
|
|
|
|
|
|
}); |
|
|
|
}, |
|
|
|