40 lines
746 B
Vue
40 lines
746 B
Vue
<template>
|
|
<div class="verification-processing">
|
|
<h1 class="mb-56">
|
|
We process your data
|
|
</h1>
|
|
|
|
<UiAlert
|
|
size="large"
|
|
class="mb-40"
|
|
>
|
|
The verification status of your documents will be displayed here. It usually takes 1-2 business days.
|
|
<br> <br>
|
|
Also, at the end of the verification, we will send a notification
|
|
to the mail john@gmail.com
|
|
</UiAlert>
|
|
|
|
<UiButton
|
|
size="large"
|
|
class="w-100"
|
|
href="/projects"
|
|
>
|
|
{{ $t('to_main') }}
|
|
</UiButton>
|
|
</div>
|
|
</template>
|
|
|
|
<script setup>
|
|
definePageMeta({
|
|
middleware: ['auth'],
|
|
centerContent: true,
|
|
});
|
|
</script>
|
|
|
|
<style lang="scss">
|
|
.verification-processing{
|
|
margin: 0 auto;
|
|
width: 513px;
|
|
}
|
|
</style>
|