mirror of
https://activitypub.software/TransFem-org/Sharkey.git
synced 2024-11-15 20:06:54 +01:00
406b4bdbe7
* refactor(frontend): 非推奨となったReactivity Transformを使わないように * refactor: 不要な括弧を除去 * fix: 不要なアノテーションを除去 * fix: Refの配列をrefしている部分の対応 * refactor: 不要な括弧を除去 * fix: lint * refactor: Ref、ShallowRef、ComputedRefの変数の宣言をletからconstに置換 * fix: type error * chore: drop reactivity transform from eslint configuration * refactor: remove unnecessary import * fix: 対応漏れ
71 lines
1.9 KiB
Vue
71 lines
1.9 KiB
Vue
<!--
|
|
SPDX-FileCopyrightText: syuilo and other misskey contributors
|
|
SPDX-License-Identifier: AGPL-3.0-only
|
|
-->
|
|
|
|
<template>
|
|
<MkModalWindow
|
|
ref="dialog"
|
|
:width="370"
|
|
:height="400"
|
|
@close="dialog.close()"
|
|
@closed="emit('closed')"
|
|
>
|
|
<template #header>{{ i18n.ts.forgotPassword }}</template>
|
|
|
|
<MkSpacer :marginMin="20" :marginMax="28">
|
|
<form v-if="instance.enableEmail" @submit.prevent="onSubmit">
|
|
<div class="_gaps_m">
|
|
<MkInput v-model="username" type="text" pattern="^[a-zA-Z0-9_]+$" :spellcheck="false" autofocus required>
|
|
<template #label>{{ i18n.ts.username }}</template>
|
|
<template #prefix>@</template>
|
|
</MkInput>
|
|
|
|
<MkInput v-model="email" type="email" :spellcheck="false" required>
|
|
<template #label>{{ i18n.ts.emailAddress }}</template>
|
|
<template #caption>{{ i18n.ts._forgotPassword.enterEmail }}</template>
|
|
</MkInput>
|
|
|
|
<MkButton type="submit" rounded :disabled="processing" primary style="margin: 0 auto;">{{ i18n.ts.send }}</MkButton>
|
|
|
|
<MkInfo>{{ i18n.ts._forgotPassword.ifNoEmail }}</MkInfo>
|
|
</div>
|
|
</form>
|
|
<div v-else>
|
|
{{ i18n.ts._forgotPassword.contactAdmin }}
|
|
</div>
|
|
</MkSpacer>
|
|
</MkModalWindow>
|
|
</template>
|
|
|
|
<script lang="ts" setup>
|
|
import { ref } from 'vue';
|
|
import MkModalWindow from '@/components/MkModalWindow.vue';
|
|
import MkButton from '@/components/MkButton.vue';
|
|
import MkInput from '@/components/MkInput.vue';
|
|
import MkInfo from '@/components/MkInfo.vue';
|
|
import * as os from '@/os.js';
|
|
import { instance } from '@/instance.js';
|
|
import { i18n } from '@/i18n.js';
|
|
|
|
const emit = defineEmits<{
|
|
(ev: 'done'): void;
|
|
(ev: 'closed'): void;
|
|
}>();
|
|
|
|
const dialog = ref<InstanceType<typeof MkModalWindow>>();
|
|
|
|
const username = ref('');
|
|
const email = ref('');
|
|
const processing = ref(false);
|
|
|
|
async function onSubmit() {
|
|
processing.value = true;
|
|
await os.apiWithDialog('request-reset-password', {
|
|
username: username.value,
|
|
email: email.value,
|
|
});
|
|
emit('done');
|
|
dialog.value.close();
|
|
}
|
|
</script>
|