Newer
Older
Eliot Berriot
committed
<template>
<main class="main pusher" v-title="labels.title">
<section class="ui vertical stripe segment">
Eliot Berriot
committed
<div class="ui small text container">
<h2><translate :translate-context="'Content/Login/Title/Verb'">Log in to your Funkwhale account</translate></h2>
Eliot Berriot
committed
<form class="ui form" @submit.prevent="submit()">
<div v-if="error" class="ui negative message">
<div class="header"><translate :translate-context="'Content/Login/Error message.Title'">We cannot log you in</translate></div>
Eliot Berriot
committed
<ul class="list">
<li v-if="error == 'invalid_credentials'"><translate :translate-context="'Content/Login/Error message.List item/Call to action'">Please double-check your username/password couple is correct</translate></li>
<li v-else><translate :translate-context="'Content/Login/Error message/List item'">An unknown error happend, this can mean the server is down or cannot be reached</translate></li>
Eliot Berriot
committed
</ul>
</div>
<div class="field">
<translate :translate-context="'Content/Login/Input.Label/Noun'">Username or email</translate> |
<router-link :to="{path: '/signup'}">
<translate :translate-context="'Content/Login/Link/Verb'">Create an account</translate>
Eliot Berriot
committed
<input
ref="username"
Eliot Berriot
committed
required
Eliot Berriot
committed
name="username"
Eliot Berriot
committed
type="text"
autofocus
Eliot Berriot
committed
v-model="credentials.username"
>
</div>
<div class="field">
<translate :translate-context="'Content/Login/Input.Label'">Password</translate> |
<router-link :to="{name: 'auth.password-reset', query: {email: credentials.username}}">
<translate :translate-context="'Content/Login/Link/Verb'">Reset your password</translate>
</router-link>
</label>
<password-input :index="2" required v-model="credentials.password" />
Eliot Berriot
committed
</div>
<button tabindex="3" :class="['ui', {'loading': isLoading}, 'right', 'floated', 'green', 'button']" type="submit">
<translate :translate-context="'Content/Login/Button.Label/Verb'">Login</translate>
Eliot Berriot
committed
</form>
</div>
</section>
</main>
Eliot Berriot
committed
</template>
<script>
import PasswordInput from "@/components/forms/PasswordInput"
Eliot Berriot
committed
export default {
next: { type: String, default: "/library" }
components: {
PasswordInput
},
data() {
Eliot Berriot
committed
return {
// We need to initialize the component with any
// properties that will be used in it
credentials: {
username: "",
password: ""
Eliot Berriot
committed
},
error: "",
Eliot Berriot
committed
isLoading: false
}
},
created () {
if (this.$store.state.auth.authenticated) {
this.$router.push(this.next)
}
},
mounted() {
Eliot Berriot
committed
this.$refs.username.focus()
},
labels() {
let usernamePlaceholder = this.$pgettext('Content/Login/Input.Placeholder', "Enter your username or email")
let title = this.$pgettext('Head/Login/Title', "Log In")
return {
usernamePlaceholder,
title
}
}
},
Eliot Berriot
committed
methods: {
submit() {
Eliot Berriot
committed
var self = this
self.isLoading = true
this.error = ""
Eliot Berriot
committed
var credentials = {
username: this.credentials.username,
password: this.credentials.password
}
console.log('NEXT', this.next)
this.$store
.dispatch("auth/login", {
credentials,
onError: error => {
if (error.response.status === 400) {
self.error = "invalid_credentials"
} else {
self.error = "unknown_error"
}
})
.then(e => {
self.isLoading = false
})
Eliot Berriot
committed
}
}
}
</script>
<!-- Add "scoped" attribute to limit CSS to this component only -->
<style scoped>
</style>