Merge pull request #35014 from nextcloud/fix/login-headline

Fix rendering of login headline
pull/35173/head
John Molakvoæ 2 years ago committed by GitHub
commit baf74f0aa1
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -52,7 +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>
<h2 class="login-form__headline" v-html="headline" />
<NcTextField id="user"
ref="user"
:label="t('core', 'Account name or email')"
@ -159,6 +159,7 @@ export default {
loading: false,
timezone: jstz.determine().name(),
timezoneOffset: (-new Date().getTimezoneOffset() / 60),
headline: t('core', 'Log in to {productName}', { productName: OC.theme.name }),
user: '',
password: '',
}

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long
Loading…
Cancel
Save