Skip to content
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Next Next commit
feat: Reword login form disabled warning #37949
Co-authored-by: Simon L. <[email protected]>
Signed-off-by: Julian-Samuel Gebühr <[email protected]>
  • Loading branch information
2 people authored and susnux committed Mar 17, 2024
commit a6ce590ca27c1c0d9a03510045482d0afb247a30
8 changes: 4 additions & 4 deletions core/src/views/Login.vue
Original file line number Diff line number Diff line change
Expand Up @@ -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"
Expand All @@ -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"
Expand All @@ -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>
Expand Down