mirror of
https://github.com/Bubka/2FAuth.git
synced 2024-11-25 01:34:15 +01:00
107 lines
4.2 KiB
Vue
107 lines
4.2 KiB
Vue
<template>
|
|
<div class="section">
|
|
<div class="columns is-mobile is-centered">
|
|
<div class="column is-two-thirds-tablet is-half-desktop is-one-third-widescreen is-one-quarter-fullhd">
|
|
<h1 class="title">{{ $t('commons.profile') }}</h1>
|
|
<form @submit.prevent="handleSubmit" @keydown="form.onKeydown($event)">
|
|
<div class="field">
|
|
<label class="label">{{ $t('auth.forms.name') }}</label>
|
|
<div class="control">
|
|
<input id="name" type="text" class="input" v-model="form.name" autofocus />
|
|
</div>
|
|
<field-error :form="form" field="name" />
|
|
</div>
|
|
<div class="field">
|
|
<label class="label">{{ $t('auth.forms.email') }}</label>
|
|
<div class="control">
|
|
<input id="email" type="email" class="input" v-model="form.email" />
|
|
</div>
|
|
<field-error :form="form" field="email" />
|
|
</div>
|
|
<div class="field">
|
|
<label class="label">{{ $t('auth.forms.password') }}</label>
|
|
<div class="control">
|
|
<input id="password" type="password" class="input" v-model="form.password" />
|
|
</div>
|
|
<field-error :form="form" field="password" />
|
|
</div>
|
|
<div class="field is-grouped">
|
|
<div class="control">
|
|
<v-button :isLoading="form.isBusy" >{{ $t('commons.update') }}</v-button>
|
|
</div>
|
|
<div class="control">
|
|
<router-link :to="{ name: 'accounts' }" class="button is-text">{{ $t('commons.cancel') }}</router-link>
|
|
</div>
|
|
</div>
|
|
<div class="field" v-if="errorMessage">
|
|
<span class="tag is-danger">
|
|
{{ errorMessage }}
|
|
</span>
|
|
</div>
|
|
</form>
|
|
</div>
|
|
</div>
|
|
<div class="columns is-mobile is-centered">
|
|
<div class="column is-two-thirds-tablet is-half-desktop is-one-third-widescreen is-one-quarter-fullhd">
|
|
<router-link :to="{ name: 'password.update' }" class="is-link">
|
|
{{ $t('auth.forms.change_your_password') }}
|
|
</router-link>
|
|
</div>
|
|
</div>
|
|
<div class="columns is-mobile is-centered" v-if="response">
|
|
<div class="has-text-link column is-two-thirds-tablet is-half-desktop is-one-third-widescreen is-one-quarter-fullhd">
|
|
<span class="tag is-success">
|
|
{{ response }}
|
|
</span>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</template>
|
|
|
|
<script>
|
|
|
|
import Form from './../../components/Form'
|
|
|
|
export default {
|
|
data(){
|
|
return {
|
|
response: '',
|
|
errorMessage: '',
|
|
form: new Form({
|
|
name : '',
|
|
email : '',
|
|
password : '',
|
|
})
|
|
}
|
|
},
|
|
|
|
async mounted() {
|
|
const { data } = await this.form.get('/api/user')
|
|
|
|
this.form.fill(data)
|
|
},
|
|
|
|
methods : {
|
|
handleSubmit(e) {
|
|
e.preventDefault()
|
|
|
|
this.errorMessage = ''
|
|
this.response = ''
|
|
|
|
this.form.patch('/api/user', {returnError: true})
|
|
.then(response => {
|
|
|
|
this.response = response.data.message
|
|
})
|
|
.catch(error => {
|
|
if( error.response.status === 400 ) {
|
|
this.errorMessage = error.response.data.message
|
|
}
|
|
else if( error.response.status !== 422 ) {
|
|
this.$router.push({ name: 'genericError', params: { err: error.response } });
|
|
}
|
|
});
|
|
}
|
|
},
|
|
}
|
|
</script> |