diff options
Diffstat (limited to 'src')
| -rw-r--r-- | src/components/login_form/login_form.vue | 5 | ||||
| -rw-r--r-- | src/i18n/de.json | 2 | ||||
| -rw-r--r-- | src/i18n/en.json | 2 |
3 files changed, 6 insertions, 3 deletions
diff --git a/src/components/login_form/login_form.vue b/src/components/login_form/login_form.vue index 0c0dcdcd..12971882 100644 --- a/src/components/login_form/login_form.vue +++ b/src/components/login_form/login_form.vue @@ -23,10 +23,13 @@ </form> <form v-if="loginMethod == 'token'" v-on:submit.prevent='oAuthLogin' class="login-form"> + <div class="form-group"> + <p>{{$t('login.description')}}</p> + </div> <div class='form-group'> <div class='login-bottom'> <div><router-link :to="{name: 'registration'}" v-if='registrationOpen' class='register'>{{$t('login.register')}}</router-link></div> - <button :disabled="loggingIn" type='submit' class='btn btn-default'>{{$t('login.login_token')}}</button> + <button :disabled="loggingIn" type='submit' class='btn btn-default'>{{$t('login.login')}}</button> </div> </div> </form> diff --git a/src/i18n/de.json b/src/i18n/de.json index 2cbd3e51..49179423 100644 --- a/src/i18n/de.json +++ b/src/i18n/de.json @@ -12,7 +12,7 @@ }, "login": { "login": "Anmelden", - "login_token": "Mit OAuth anmelden", + "description": "Mit OAuth anmelden", "logout": "Abmelden", "password": "Passwort", "placeholder": "z.B. lain", diff --git a/src/i18n/en.json b/src/i18n/en.json index d10fa620..036231bf 100644 --- a/src/i18n/en.json +++ b/src/i18n/en.json @@ -21,7 +21,7 @@ }, "login": { "login": "Log in", - "login_token": "Log in with OAuth", + "description": "Log in with OAuth", "logout": "Log out", "password": "Password", "placeholder": "e.g. lain", |
