mirror of
https://github.com/nextcloud/server.git
synced 2026-06-08 16:26:59 -04:00
feat: Reword login form disabled warning #37949
Co-authored-by: Simon L. <szaimen@e.mail.de> Signed-off-by: Julian-Samuel Gebühr <julian-samuel@gebuehr.net>
This commit is contained in:
parent
7bab308c68
commit
a6ce590ca2
1 changed files with 4 additions and 4 deletions
|
|
@ -66,7 +66,7 @@
|
|||
</template>
|
||||
</div>
|
||||
<div v-else-if="!loading && passwordlessLogin"
|
||||
key="reset"
|
||||
key="reset-pw-less"
|
||||
class="login-additional login-passwordless">
|
||||
<PasswordLessLoginForm :username.sync="user"
|
||||
:redirect-url="redirectUrl"
|
||||
|
|
@ -83,7 +83,7 @@
|
|||
</NcButton>
|
||||
</div>
|
||||
<div v-else-if="!loading && canResetPassword"
|
||||
key="reset"
|
||||
key="reset-can-reset"
|
||||
class="login-additional">
|
||||
<div class="lost-password-container">
|
||||
<ResetPassword v-if="resetPassword"
|
||||
|
|
@ -101,8 +101,8 @@
|
|||
</template>
|
||||
<template v-else>
|
||||
<transition name="fade" mode="out-in">
|
||||
<NcNoteCard type="warning" :title="t('core', 'Login form is disabled.')">
|
||||
{{ t('core', 'Please contact your administrator.') }}
|
||||
<NcNoteCard type="info" :title="t('core', 'Login form is disabled.')">
|
||||
{{ t('core', 'The Nextcloud login form is disabled. Use another login option if available or contact your administration.') }}
|
||||
</NcNoteCard>
|
||||
</transition>
|
||||
</template>
|
||||
|
|
|
|||
Loading…
Reference in a new issue