2021-05-04 08:05:34 +02:00
|
|
|
<template>
|
|
|
|
<FormBase v-if="token">
|
2021-09-29 17:50:45 +02:00
|
|
|
<FormInput v-model="password" type="password">
|
2021-05-04 08:05:34 +02:00
|
|
|
<template #prefix><i class="fas fa-lock"></i></template>
|
|
|
|
<span>{{ $ts.newPassword }}</span>
|
|
|
|
</FormInput>
|
|
|
|
|
|
|
|
<FormButton primary @click="save">{{ $ts.save }}</FormButton>
|
|
|
|
</FormBase>
|
|
|
|
</template>
|
|
|
|
|
|
|
|
<script lang="ts">
|
|
|
|
import { defineComponent } from 'vue';
|
2021-11-11 18:02:25 +01:00
|
|
|
import FormLink from '@/components/debobigego/link.vue';
|
|
|
|
import FormBase from '@/components/debobigego/base.vue';
|
|
|
|
import FormGroup from '@/components/debobigego/group.vue';
|
|
|
|
import FormInput from '@/components/debobigego/input.vue';
|
|
|
|
import FormButton from '@/components/debobigego/button.vue';
|
|
|
|
import * as os from '@/os';
|
|
|
|
import * as symbols from '@/symbols';
|
2021-05-04 08:05:34 +02:00
|
|
|
|
|
|
|
export default defineComponent({
|
|
|
|
components: {
|
|
|
|
FormBase,
|
|
|
|
FormGroup,
|
|
|
|
FormLink,
|
|
|
|
FormInput,
|
|
|
|
FormButton,
|
|
|
|
},
|
|
|
|
|
|
|
|
props: {
|
|
|
|
token: {
|
|
|
|
type: String,
|
|
|
|
required: false
|
|
|
|
}
|
|
|
|
},
|
|
|
|
|
|
|
|
data() {
|
|
|
|
return {
|
|
|
|
[symbols.PAGE_INFO]: {
|
|
|
|
title: this.$ts.resetPassword,
|
|
|
|
icon: 'fas fa-lock'
|
|
|
|
},
|
|
|
|
password: '',
|
|
|
|
}
|
|
|
|
},
|
|
|
|
|
|
|
|
mounted() {
|
|
|
|
if (this.token == null) {
|
2021-11-11 18:02:25 +01:00
|
|
|
os.popup(import('@/components/forgot-password.vue'), {}, {}, 'closed');
|
2021-05-04 08:05:34 +02:00
|
|
|
this.$router.push('/');
|
|
|
|
}
|
|
|
|
},
|
|
|
|
|
|
|
|
methods: {
|
|
|
|
async save() {
|
|
|
|
await os.apiWithDialog('reset-password', {
|
|
|
|
token: this.token,
|
|
|
|
password: this.password,
|
|
|
|
});
|
|
|
|
this.$router.push('/');
|
|
|
|
}
|
|
|
|
}
|
|
|
|
});
|
|
|
|
</script>
|
|
|
|
|
|
|
|
<style lang="scss" scoped>
|
|
|
|
|
|
|
|
</style>
|