2023-07-27 05:31:52 +00:00
|
|
|
<!--
|
|
|
|
SPDX-FileCopyrightText: syuilo and other misskey contributors
|
|
|
|
SPDX-License-Identifier: AGPL-3.0-only
|
|
|
|
-->
|
|
|
|
|
2021-05-04 06:05:34 +00:00
|
|
|
<template>
|
2022-06-20 08:38:49 +00:00
|
|
|
<MkStickyContainer>
|
|
|
|
<template #header><MkPageHeader :actions="headerActions" :tabs="headerTabs"/></template>
|
2023-05-19 07:20:53 +00:00
|
|
|
<MkSpacer v-if="token" :contentMax="700" :marginMin="16" :marginMax="32">
|
2023-01-06 04:40:17 +00:00
|
|
|
<div class="_gaps_m">
|
2023-01-07 06:09:46 +00:00
|
|
|
<MkInput v-model="password" type="password">
|
2022-12-19 10:01:30 +00:00
|
|
|
<template #prefix><i class="ti ti-lock"></i></template>
|
2022-06-20 08:38:49 +00:00
|
|
|
<template #label>{{ i18n.ts.newPassword }}</template>
|
2023-01-07 06:09:46 +00:00
|
|
|
</MkInput>
|
2023-07-07 22:08:16 +00:00
|
|
|
|
2023-01-06 00:41:14 +00:00
|
|
|
<MkButton primary @click="save">{{ i18n.ts.save }}</MkButton>
|
2022-06-20 08:38:49 +00:00
|
|
|
</div>
|
|
|
|
</MkSpacer>
|
|
|
|
</MkStickyContainer>
|
2021-05-04 06:05:34 +00:00
|
|
|
</template>
|
|
|
|
|
2022-01-16 02:02:27 +00:00
|
|
|
<script lang="ts" setup>
|
2022-05-01 13:51:07 +00:00
|
|
|
import { defineAsyncComponent, onMounted } from 'vue';
|
2023-01-07 06:09:46 +00:00
|
|
|
import MkInput from '@/components/MkInput.vue';
|
2023-01-06 00:41:14 +00:00
|
|
|
import MkButton from '@/components/MkButton.vue';
|
2023-09-19 07:37:43 +00:00
|
|
|
import * as os from '@/os.js';
|
|
|
|
import { i18n } from '@/i18n.js';
|
|
|
|
import { mainRouter } from '@/router.js';
|
|
|
|
import { definePageMetadata } from '@/scripts/page-metadata.js';
|
2022-01-16 02:02:27 +00: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 08:38:49 +00:00
|
|
|
mainRouter.push('/');
|
2022-01-16 02:02:27 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
onMounted(() => {
|
|
|
|
if (props.token == null) {
|
2022-08-30 15:24:33 +00:00
|
|
|
os.popup(defineAsyncComponent(() => import('@/components/MkForgotPassword.vue')), {}, {}, 'closed');
|
2022-06-20 08:38:49 +00:00
|
|
|
mainRouter.push('/');
|
2022-01-16 02:02:27 +00:00
|
|
|
}
|
|
|
|
});
|
2021-05-04 06:05:34 +00:00
|
|
|
|
2022-06-20 08:38:49 +00:00
|
|
|
const headerActions = $computed(() => []);
|
|
|
|
|
|
|
|
const headerTabs = $computed(() => []);
|
|
|
|
|
|
|
|
definePageMetadata({
|
|
|
|
title: i18n.ts.resetPassword,
|
2022-12-19 10:01:30 +00:00
|
|
|
icon: 'ti ti-lock',
|
2021-05-04 06:05:34 +00:00
|
|
|
});
|
|
|
|
</script>
|