2021-05-04 09:05:34 +03:00
|
|
|
<template>
|
2022-06-20 11:38:49 +03:00
|
|
|
<MkStickyContainer>
|
|
|
|
<template #header><MkPageHeader :actions="headerActions" :tabs="headerTabs"/></template>
|
|
|
|
<MkSpacer v-if="token" :content-max="700" :margin-min="16" :margin-max="32">
|
2023-01-06 06:40:17 +02:00
|
|
|
<div class="_gaps_m">
|
2023-01-07 08:09:46 +02:00
|
|
|
<MkInput v-model="password" type="password">
|
2022-12-19 12:01:30 +02:00
|
|
|
<template #prefix><i class="ti ti-lock"></i></template>
|
2022-06-20 11:38:49 +03:00
|
|
|
<template #label>{{ i18n.ts.newPassword }}</template>
|
2023-01-07 08:09:46 +02:00
|
|
|
</MkInput>
|
2022-01-02 14:35:23 +02:00
|
|
|
|
2023-01-06 02:41:14 +02:00
|
|
|
<MkButton primary @click="save">{{ i18n.ts.save }}</MkButton>
|
2022-06-20 11:38:49 +03:00
|
|
|
</div>
|
|
|
|
</MkSpacer>
|
|
|
|
</MkStickyContainer>
|
2021-05-04 09:05:34 +03:00
|
|
|
</template>
|
|
|
|
|
2022-01-16 04:02:27 +02:00
|
|
|
<script lang="ts" setup>
|
2022-05-01 16:51:07 +03:00
|
|
|
import { defineAsyncComponent, onMounted } from 'vue';
|
2023-01-07 08:09:46 +02:00
|
|
|
import MkInput from '@/components/MkInput.vue';
|
2023-01-06 02:41:14 +02:00
|
|
|
import MkButton from '@/components/MkButton.vue';
|
2021-11-11 19:02:25 +02:00
|
|
|
import * as os from '@/os';
|
2022-01-16 04:02:27 +02:00
|
|
|
import { i18n } from '@/i18n';
|
2022-06-20 11:38:49 +03:00
|
|
|
import { mainRouter } from '@/router';
|
|
|
|
import { definePageMetadata } from '@/scripts/page-metadata';
|
2022-01-16 04:02:27 +02: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 11:38:49 +03:00
|
|
|
mainRouter.push('/');
|
2022-01-16 04:02:27 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
onMounted(() => {
|
|
|
|
if (props.token == null) {
|
2022-08-30 18:24:33 +03:00
|
|
|
os.popup(defineAsyncComponent(() => import('@/components/MkForgotPassword.vue')), {}, {}, 'closed');
|
2022-06-20 11:38:49 +03:00
|
|
|
mainRouter.push('/');
|
2022-01-16 04:02:27 +02:00
|
|
|
}
|
|
|
|
});
|
2021-05-04 09:05:34 +03:00
|
|
|
|
2022-06-20 11:38:49 +03:00
|
|
|
const headerActions = $computed(() => []);
|
|
|
|
|
|
|
|
const headerTabs = $computed(() => []);
|
|
|
|
|
|
|
|
definePageMetadata({
|
|
|
|
title: i18n.ts.resetPassword,
|
2022-12-19 12:01:30 +02:00
|
|
|
icon: 'ti ti-lock',
|
2021-05-04 09:05:34 +03:00
|
|
|
});
|
|
|
|
</script>
|
|
|
|
|
2022-12-27 11:29:39 +02:00
|
|
|
<style lang="scss" scoped>
|
2021-05-04 09:05:34 +03:00
|
|
|
|
|
|
|
</style>
|