2021-10-08 06:37:02 +02:00
|
|
|
<template>
|
|
|
|
<div>
|
2022-01-16 03:02:27 +01:00
|
|
|
{{ i18n.locale.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 * as symbols from '@/symbols';
|
|
|
|
import { login } from '@/account';
|
2022-01-16 03:02:27 +01:00
|
|
|
import { i18n } from '@/i18n';
|
|
|
|
|
|
|
|
const props = defineProps<{
|
|
|
|
code: string;
|
|
|
|
}>();
|
|
|
|
|
|
|
|
onMounted(async () => {
|
|
|
|
await os.alert({
|
|
|
|
type: 'info',
|
|
|
|
text: i18n.t('clickToFinishEmailVerification', { ok: i18n.locale.gotIt }),
|
|
|
|
});
|
|
|
|
const res = await os.apiWithDialog('signup-pending', {
|
|
|
|
code: props.code,
|
|
|
|
});
|
|
|
|
login(res.i, '/');
|
|
|
|
});
|
2021-10-08 06:37:02 +02:00
|
|
|
|
2022-01-16 03:02:27 +01:00
|
|
|
defineExpose({
|
|
|
|
[symbols.PAGE_INFO]: {
|
|
|
|
title: i18n.locale.signup,
|
|
|
|
icon: 'fas fa-user',
|
2021-10-08 06:37:02 +02:00
|
|
|
},
|
|
|
|
});
|
|
|
|
</script>
|
|
|
|
|
|
|
|
<style lang="scss" scoped>
|
|
|
|
|
|
|
|
</style>
|