Merge pull request #21829 from nextcloud/bugfix/noid/fix-login-form-erors

Fix login form erors
This commit is contained in:
Roeland Jago Douma 2020-07-15 08:48:25 +02:00 committed by GitHub
commit b327b4fbe6
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
11 changed files with 27 additions and 14 deletions

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

View File

@ -23,7 +23,7 @@
<form ref="loginForm"
method="post"
name="login"
:action="OC.generateUrl('login')"
:action="loginActionUrl"
@submit="submit">
<fieldset>
<div v-if="apacheAuthFailed"
@ -47,7 +47,7 @@
class="hidden">
<img class="float-spinner"
alt=""
:src="OC.imagePath('core', 'loading-dark.gif')">
:src="loadingIcon">
<span id="messageText" />
<!-- the following div ensures that the spinner is always inside the #message div -->
<div style="clear: both;" />
@ -65,7 +65,7 @@
:aria-label="t('core', 'Username or email')"
required
@change="updateUsername">
<label for="user" class="infield">{{ t('core', 'Username or email') }}</label>
<label for="user" class="infield">{{ t('core', 'Username or email') }}</label>
</p>
<p class="groupbottom"
@ -82,7 +82,7 @@
<label for="password"
class="infield">{{ t('Password') }}</label>
<a href="#" class="toggle-password" @click.stop.prevent="togglePassword">
<img :src="OC.imagePath('core', 'actions/toggle.svg')">
<img :src="toggleIcon">
</a>
</p>
@ -126,6 +126,10 @@
<script>
import jstz from 'jstimezonedetect'
import LoginButton from './LoginButton'
import {
generateUrl,
imagePath,
} from '@nextcloud/router'
export default {
name: 'LoginForm',
@ -185,6 +189,15 @@ export default {
userDisabled() {
return this.errors.indexOf('userdisabled') !== -1
},
toggleIcon() {
return imagePath('core', 'actions/toggle.svg')
},
loadingIcon() {
return imagePath('core', 'loading-dark.gif')
},
loginActionUrl() {
return generateUrl('login')
},
},
mounted() {
if (this.username === '') {