diff options
| author | Roger Braun <roger@rogerbraun.net> | 2018-11-08 16:12:05 +0100 |
|---|---|---|
| committer | Roger Braun <roger@rogerbraun.net> | 2018-11-08 16:12:05 +0100 |
| commit | a04795d723e695a23eb15c1abb7b7a5407d4686b (patch) | |
| tree | 911e805095d46a401219788408bbbe0da984ffc9 | |
| parent | 50264410f541c8f9f3416bd0027fc199cb96e424 (diff) | |
Display OAuth login on login form button.
| -rw-r--r-- | src/components/login_form/login_form.vue | 2 | ||||
| -rw-r--r-- | src/i18n/de.json | 1 | ||||
| -rw-r--r-- | src/i18n/en.json | 1 |
3 files changed, 3 insertions, 1 deletions
diff --git a/src/components/login_form/login_form.vue b/src/components/login_form/login_form.vue index 8a5174d7..0c0dcdcd 100644 --- a/src/components/login_form/login_form.vue +++ b/src/components/login_form/login_form.vue @@ -26,7 +26,7 @@ <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')}}</button> + <button :disabled="loggingIn" type='submit' class='btn btn-default'>{{$t('login.login_token')}}</button> </div> </div> </form> diff --git a/src/i18n/de.json b/src/i18n/de.json index 4e742bad..2cbd3e51 100644 --- a/src/i18n/de.json +++ b/src/i18n/de.json @@ -12,6 +12,7 @@ }, "login": { "login": "Anmelden", + "login_token": "Mit OAuth anmelden", "logout": "Abmelden", "password": "Passwort", "placeholder": "z.B. lain", diff --git a/src/i18n/en.json b/src/i18n/en.json index 8963e479..d10fa620 100644 --- a/src/i18n/en.json +++ b/src/i18n/en.json @@ -21,6 +21,7 @@ }, "login": { "login": "Log in", + "login_token": "Log in with OAuth", "logout": "Log out", "password": "Password", "placeholder": "e.g. lain", |
