2021-05-04 08:05:34 +02:00
|
|
|
<template>
|
2022-06-20 10:38:49 +02:00
|
|
|
<MkStickyContainer>
|
|
|
|
<template #header><MkPageHeader :actions="headerActions" :tabs="headerTabs"/></template>
|
|
|
|
<MkSpacer v-if="token" :content-max="700" :margin-min="16" :margin-max="32">
|
|
|
|
<div class="_formRoot">
|
|
|
|
<FormInput v-model="password" type="password" class="_formBlock">
|
|
|
|
<template #prefix><i class="fas fa-lock"></i></template>
|
|
|
|
<template #label>{{ i18n.ts.newPassword }}</template>
|
|
|
|
</FormInput>
|
2022-01-02 13:35:23 +01:00
|
|
|
|
2022-06-20 10:38:49 +02:00
|
|
|
<FormButton primary class="_formBlock" @click="save">{{ i18n.ts.save }}</FormButton>
|
|
|
|
</div>
|
|
|
|
</MkSpacer>
|
|
|
|
</MkStickyContainer>
|
2021-05-04 08:05:34 +02:00
|
|
|
</template>
|
|
|
|
|
2022-01-16 03:02:27 +01:00
|
|
|
<script lang="ts" setup>
|
2022-05-01 15:51:07 +02:00
|
|
|
import { defineAsyncComponent, onMounted } from 'vue';
|
2022-01-02 13:35:23 +01:00
|
|
|
import FormInput from '@/components/form/input.vue';
|
|
|
|
import FormButton from '@/components/ui/button.vue';
|
2021-11-11 18:02:25 +01:00
|
|
|
import * as os from '@/os';
|
2022-01-16 03:02:27 +01:00
|
|
|
import { i18n } from '@/i18n';
|
2022-06-20 10:38:49 +02:00
|
|
|
import { mainRouter } from '@/router';
|
|
|
|
import { definePageMetadata } from '@/scripts/page-metadata';
|
2022-01-16 03:02:27 +01:00
|
|
|
|
|
|
|
const props = defineProps<{
|
|
|
|
token?: string;
|
|
|
|
}>();
|
|
|
|
|
|
|
|
let password = $ref('');
|
|
|
|
|
|
|
|
async function save() {
|
|
|
|
await os.apiWithDialog('reset-password', {
|
|
|
|
token: props.token,
|
|
|
|
password: password,
|
|
|
|
});
|
2022-06-20 10:38:49 +02:00
|
|
|
mainRouter.push('/');
|
2022-01-16 03:02:27 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
onMounted(() => {
|
|
|
|
if (props.token == null) {
|
2022-05-01 15:51:07 +02:00
|
|
|
os.popup(defineAsyncComponent(() => import('@/components/forgot-password.vue')), {}, {}, 'closed');
|
2022-06-20 10:38:49 +02:00
|
|
|
mainRouter.push('/');
|
2022-01-16 03:02:27 +01:00
|
|
|
}
|
|
|
|
});
|
2021-05-04 08:05:34 +02:00
|
|
|
|
2022-06-20 10:38:49 +02:00
|
|
|
const headerActions = $computed(() => []);
|
|
|
|
|
|
|
|
const headerTabs = $computed(() => []);
|
|
|
|
|
|
|
|
definePageMetadata({
|
|
|
|
title: i18n.ts.resetPassword,
|
|
|
|
icon: 'fas fa-lock',
|
2021-05-04 08:05:34 +02:00
|
|
|
});
|
|
|
|
</script>
|
|
|
|
|
|
|
|
<style lang="scss" scoped>
|
|
|
|
|
|
|
|
</style>
|