Fix some minor translation issue
This commit is contained in:
parent
a9e5186c04
commit
361f64c0a4
@ -66,7 +66,7 @@ export default {
|
|||||||
'invalid code': 'invalid code',
|
'invalid code': 'invalid code',
|
||||||
Password: 'Password',
|
Password: 'Password',
|
||||||
'Forget password': 'Forget password',
|
'Forget password': 'Forget password',
|
||||||
'Invalid password': 'Invalid password',
|
'Invalid password': 'Password doesn\'t match',
|
||||||
'Read More': 'Read More',
|
'Read More': 'Read More',
|
||||||
'Total earning': 'Total earning',
|
'Total earning': 'Total earning',
|
||||||
Payable: 'Payable',
|
Payable: 'Payable',
|
||||||
|
|||||||
@ -9,14 +9,8 @@
|
|||||||
<div class="form-group">
|
<div class="form-group">
|
||||||
<div class="input-group-container">
|
<div class="input-group-container">
|
||||||
<div class="form-floating">
|
<div class="form-floating">
|
||||||
<input
|
<input class="input-email" id="inputCode" type="text" :placeholder="'Code sent to your email'"
|
||||||
class="input-email"
|
v-model="code" @focus="inputFocus" />
|
||||||
id="inputCode"
|
|
||||||
type="text"
|
|
||||||
:placeholder="'Code sent to your email'"
|
|
||||||
v-model="code"
|
|
||||||
@focus="inputFocus"
|
|
||||||
/>
|
|
||||||
<label for="inputCode">{{ $t('Authenticaion Code Sent To Your Email') }}</label>
|
<label for="inputCode">{{ $t('Authenticaion Code Sent To Your Email') }}</label>
|
||||||
</div>
|
</div>
|
||||||
<button type="submit" class="btn-start">{{ $t('SIGN IN') }}</button>
|
<button type="submit" class="btn-start">{{ $t('SIGN IN') }}</button>
|
||||||
@ -25,7 +19,8 @@
|
|||||||
<p class="error-msg" v-if="message != null">{{ message }}</p>
|
<p class="error-msg" v-if="message != null">{{ message }}</p>
|
||||||
<p class="error-msg" v-if="!message">
|
<p class="error-msg" v-if="!message">
|
||||||
<span>{{ $t('Didn\'t get the email? Check junk folder or') }}</span>
|
<span>{{ $t('Didn\'t get the email? Check junk folder or') }}</span>
|
||||||
<button class="btn btn-link resend-btn" :disabled="countdown !== 0" type="button" @click="trySigninWithEmail">send again</button>
|
<button class="btn btn-link resend-btn" :disabled="countdown !== 0" type="button"
|
||||||
|
@click="trySigninWithEmail">{{ $t('send again') }}</button>
|
||||||
<span v-if="countdown !== 0" class="countdown">({{ countdown }})</span>
|
<span v-if="countdown !== 0" class="countdown">({{ countdown }})</span>
|
||||||
</p>
|
</p>
|
||||||
</div>
|
</div>
|
||||||
@ -145,11 +140,13 @@ export default {
|
|||||||
font-weight: 500;
|
font-weight: 500;
|
||||||
padding: 0;
|
padding: 0;
|
||||||
font-size: 18px;
|
font-size: 18px;
|
||||||
|
|
||||||
&:disabled {
|
&:disabled {
|
||||||
color: $primary;
|
color: $primary;
|
||||||
opacity: .78;
|
opacity: .78;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
.countdown {
|
.countdown {
|
||||||
color: $primary;
|
color: $primary;
|
||||||
}
|
}
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user