diff --git a/FrontEnd/pages/user/signUp.vue b/FrontEnd/pages/user/signUp.vue
index 1aa4a16..5359cae 100644
--- a/FrontEnd/pages/user/signUp.vue
+++ b/FrontEnd/pages/user/signUp.vue
@@ -5,6 +5,7 @@
{{ $t("Welcome to ShowEasy!") }}
+
{{ $t("Already have an account?") }}
{{ $t("Login") }}
@@ -31,6 +32,7 @@
{{ $t("Sign up with Email") }}
{{ $t("Welcome to ShowEasy!") }}
+ {{ errorDialog }}
{
//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;
});
},