2021-10-08 06:37:02 +02:00
|
|
|
<template>
|
|
|
|
<div>
|
2022-01-28 03:39:49 +01:00
|
|
|
{{ i18n.ts.processing }}
|
2021-10-08 06:37:02 +02:00
|
|
|
</div>
|
|
|
|
</template>
|
|
|
|
|
2022-01-16 03:02:27 +01:00
|
|
|
<script lang="ts" setup>
|
|
|
|
import { onMounted } from 'vue';
|
2021-11-11 18:02:25 +01:00
|
|
|
import * as os from '@/os';
|
|
|
|
import { login } from '@/account';
|
2022-01-16 03:02:27 +01:00
|
|
|
import { i18n } from '@/i18n';
|
2022-06-20 10:38:49 +02:00
|
|
|
import { definePageMetadata } from '@/scripts/page-metadata';
|
2022-01-16 03:02:27 +01:00
|
|
|
|
|
|
|
const props = defineProps<{
|
|
|
|
code: string;
|
|
|
|
}>();
|
|
|
|
|
|
|
|
onMounted(async () => {
|
|
|
|
await os.alert({
|
|
|
|
type: 'info',
|
2022-01-28 03:39:49 +01:00
|
|
|
text: i18n.t('clickToFinishEmailVerification', { ok: i18n.ts.gotIt }),
|
2022-01-16 03:02:27 +01:00
|
|
|
});
|
|
|
|
const res = await os.apiWithDialog('signup-pending', {
|
|
|
|
code: props.code,
|
|
|
|
});
|
|
|
|
login(res.i, '/');
|
|
|
|
});
|
2021-10-08 06:37:02 +02:00
|
|
|
|
2022-06-20 10:38:49 +02:00
|
|
|
const headerActions = $computed(() => []);
|
|
|
|
|
|
|
|
const headerTabs = $computed(() => []);
|
|
|
|
|
|
|
|
definePageMetadata({
|
|
|
|
title: i18n.ts.signup,
|
|
|
|
icon: 'fas fa-user',
|
2021-10-08 06:37:02 +02:00
|
|
|
});
|
|
|
|
</script>
|
|
|
|
|
|
|
|
<style lang="scss" scoped>
|
|
|
|
|
|
|
|
</style>
|