diff options
-rw-r--r-- | core/src/components/login/LoginForm.vue | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/core/src/components/login/LoginForm.vue b/core/src/components/login/LoginForm.vue index b794a2c02ce..51966868b5e 100644 --- a/core/src/components/login/LoginForm.vue +++ b/core/src/components/login/LoginForm.vue @@ -52,6 +52,7 @@ <!-- the following div ensures that the spinner is always inside the #message div --> <div style="clear: both;" /> </div> + <h2 class="login-form__headline">{{ t('core', 'Log in to {productName}', { productName: OC.theme.name }) }}</h2> <NcTextField id="user" ref="user" :label="t('core', 'Account name or email')" @@ -232,5 +233,9 @@ export default { flex-direction: column; gap: .5rem; } + + &__headline { + text-align: center; + } } </style> |