2023-04-27 04:44:38 +02:00
|
|
|
<template>
|
|
|
|
<div>
|
|
|
|
{{ i18n.ts.processing }}
|
|
|
|
</div>
|
|
|
|
</template>
|
|
|
|
|
|
|
|
<script lang="ts" setup>
|
|
|
|
import { onMounted } from "vue";
|
|
|
|
import * as os from "@/os";
|
|
|
|
import { i18n } from "@/i18n";
|
|
|
|
import { definePageMetadata } from "@/scripts/page-metadata";
|
|
|
|
|
|
|
|
const props = defineProps<{
|
|
|
|
code: string;
|
|
|
|
}>();
|
|
|
|
|
|
|
|
onMounted(async () => {
|
|
|
|
await os.alert({
|
|
|
|
type: "info",
|
|
|
|
text: i18n.t("clickToFinishEmailVerification", { ok: i18n.ts.gotIt }),
|
|
|
|
});
|
2023-04-27 05:03:04 +02:00
|
|
|
await os.api("verify-email", {
|
2023-04-27 04:44:38 +02:00
|
|
|
code: props.code,
|
|
|
|
});
|
2023-04-27 05:03:04 +02:00
|
|
|
window.location.href = "/";
|
2023-04-27 04:44:38 +02:00
|
|
|
});
|
|
|
|
|
|
|
|
const headerActions = $computed(() => []);
|
|
|
|
|
|
|
|
const headerTabs = $computed(() => []);
|
|
|
|
|
|
|
|
definePageMetadata({
|
|
|
|
title: "Verify email",
|
|
|
|
icon: "ph-user ph-bold ph-lg",
|
|
|
|
});
|
|
|
|
</script>
|