2021-05-04 01:05:34 -05:00
|
|
|
<template>
|
|
|
|
<XModalWindow ref="dialog"
|
|
|
|
:width="370"
|
|
|
|
:height="400"
|
2022-01-18 08:06:16 -06:00
|
|
|
@close="dialog.close()"
|
|
|
|
@closed="emit('closed')"
|
2021-05-04 01:05:34 -05:00
|
|
|
>
|
2022-01-27 20:39:49 -06:00
|
|
|
<template #header>{{ i18n.ts.forgotPassword }}</template>
|
2021-05-04 01:05:34 -05:00
|
|
|
|
2022-01-18 08:06:16 -06:00
|
|
|
<form v-if="instance.enableEmail" class="bafeceda" @submit.prevent="onSubmit">
|
2021-10-31 05:19:28 -05:00
|
|
|
<div class="main _formRoot">
|
2021-11-19 04:36:12 -06:00
|
|
|
<MkInput v-model="username" class="_formBlock" type="text" pattern="^[a-zA-Z0-9_]+$" spellcheck="false" autofocus required>
|
2022-01-27 20:39:49 -06:00
|
|
|
<template #label>{{ i18n.ts.username }}</template>
|
2021-05-04 01:05:34 -05:00
|
|
|
<template #prefix>@</template>
|
|
|
|
</MkInput>
|
|
|
|
|
2021-11-19 04:36:12 -06:00
|
|
|
<MkInput v-model="email" class="_formBlock" type="email" spellcheck="false" required>
|
2022-01-27 20:39:49 -06:00
|
|
|
<template #label>{{ i18n.ts.emailAddress }}</template>
|
|
|
|
<template #caption>{{ i18n.ts._forgotPassword.enterEmail }}</template>
|
2021-05-04 01:05:34 -05:00
|
|
|
</MkInput>
|
|
|
|
|
2022-01-27 20:39:49 -06:00
|
|
|
<MkButton class="_formBlock" type="submit" :disabled="processing" primary style="margin: 0 auto;">{{ i18n.ts.send }}</MkButton>
|
2021-05-04 01:05:34 -05:00
|
|
|
</div>
|
2021-10-31 05:19:28 -05:00
|
|
|
<div class="sub">
|
2022-01-27 20:39:49 -06:00
|
|
|
<MkA to="/about" class="_link">{{ i18n.ts._forgotPassword.ifNoEmail }}</MkA>
|
2021-05-04 01:05:34 -05:00
|
|
|
</div>
|
|
|
|
</form>
|
2022-01-18 08:06:16 -06:00
|
|
|
<div v-else class="bafecedb">
|
2022-01-27 20:39:49 -06:00
|
|
|
{{ i18n.ts._forgotPassword.contactAdmin }}
|
2021-05-04 01:05:34 -05:00
|
|
|
</div>
|
|
|
|
</XModalWindow>
|
|
|
|
</template>
|
|
|
|
|
2022-01-18 08:06:16 -06:00
|
|
|
<script lang="ts" setup>
|
|
|
|
import { } from 'vue';
|
2021-11-11 11:02:25 -06:00
|
|
|
import XModalWindow from '@/components/ui/modal-window.vue';
|
|
|
|
import MkButton from '@/components/ui/button.vue';
|
|
|
|
import MkInput from '@/components/form/input.vue';
|
|
|
|
import * as os from '@/os';
|
2022-01-18 08:06:16 -06:00
|
|
|
import { instance } from '@/instance';
|
|
|
|
import { i18n } from '@/i18n';
|
2021-05-04 01:05:34 -05:00
|
|
|
|
2022-01-18 08:06:16 -06:00
|
|
|
const emit = defineEmits<{
|
2022-05-26 08:53:09 -05:00
|
|
|
(ev: 'done'): void;
|
|
|
|
(ev: 'closed'): void;
|
2022-01-18 08:06:16 -06:00
|
|
|
}>();
|
2021-05-04 01:05:34 -05:00
|
|
|
|
2022-01-18 08:06:16 -06:00
|
|
|
let dialog: InstanceType<typeof XModalWindow> = $ref();
|
2021-05-04 01:05:34 -05:00
|
|
|
|
2022-01-18 08:06:16 -06:00
|
|
|
let username = $ref('');
|
|
|
|
let email = $ref('');
|
|
|
|
let processing = $ref(false);
|
2021-05-04 01:05:34 -05:00
|
|
|
|
2022-01-18 08:06:16 -06:00
|
|
|
async function onSubmit() {
|
|
|
|
processing = true;
|
|
|
|
await os.apiWithDialog('request-reset-password', {
|
|
|
|
username,
|
|
|
|
email,
|
|
|
|
});
|
|
|
|
emit('done');
|
|
|
|
dialog.close();
|
|
|
|
}
|
2021-05-04 01:05:34 -05:00
|
|
|
</script>
|
2021-10-31 05:19:28 -05:00
|
|
|
|
|
|
|
<style lang="scss" scoped>
|
|
|
|
.bafeceda {
|
|
|
|
> .main {
|
|
|
|
padding: 24px;
|
|
|
|
}
|
|
|
|
|
|
|
|
> .sub {
|
|
|
|
border-top: solid 0.5px var(--divider);
|
|
|
|
padding: 24px;
|
|
|
|
}
|
|
|
|
}
|
2022-01-18 08:06:16 -06:00
|
|
|
|
|
|
|
.bafecedb {
|
|
|
|
padding: 24px;
|
|
|
|
}
|
2021-10-31 05:19:28 -05:00
|
|
|
</style>
|