diff --git a/frontend/src/lang/en.js b/frontend/src/lang/en.js index 7c2897a..8a7e21f 100644 --- a/frontend/src/lang/en.js +++ b/frontend/src/lang/en.js @@ -66,7 +66,7 @@ export default { 'invalid code': 'invalid code', Password: 'Password', 'Forget password': 'Forget password', - 'Invalid password': 'Invalid password', + 'Invalid password': 'Password doesn\'t match', 'Read More': 'Read More', 'Total earning': 'Total earning', Payable: 'Payable', diff --git a/frontend/src/pages/guest/SigninWithEmailAndCode.vue b/frontend/src/pages/guest/SigninWithEmailAndCode.vue index 048350a..610360b 100644 --- a/frontend/src/pages/guest/SigninWithEmailAndCode.vue +++ b/frontend/src/pages/guest/SigninWithEmailAndCode.vue @@ -3,20 +3,14 @@
-

{{email}}

+

{{ email }}

- +
@@ -24,9 +18,10 @@

{{ message }}

- {{$t('Didn\'t get the email? Check junk folder or')}} - - ({{countdown}}) + {{ $t('Didn\'t get the email? Check junk folder or') }} + + ({{ countdown }})

@@ -57,7 +52,7 @@ export default { } }, - created() {}, + created() { }, mounted() { if (this.mnx_IsKeepUserSignedIn() && this.mnx_isUserAuthenticated()) { this.mnx_navAfterSignedin() @@ -145,11 +140,13 @@ export default { font-weight: 500; padding: 0; font-size: 18px; + &:disabled { color: $primary; opacity: .78; } } + .countdown { color: $primary; }