2022-02-12 02:19:49 +01:00
|
|
|
<template>
|
2022-12-17 22:12:18 +01:00
|
|
|
|
2022-03-30 22:48:08 +02:00
|
|
|
<div v-if="!globalStore.serverError" class="q-ma-md">
|
2022-05-14 00:32:48 +02:00
|
|
|
<!--
|
2022-03-10 23:20:09 +01:00
|
|
|
<CVerifyTelegram v-if="!tools.TelegVerificato() || !tools.isUsernameTelegOk()">
|
2022-02-24 23:36:27 +01:00
|
|
|
|
|
|
|
|
</CVerifyTelegram>
|
2022-05-14 00:32:48 +02:00
|
|
|
-->
|
2022-02-24 23:36:27 +01:00
|
|
|
|
2022-12-11 02:57:45 +01:00
|
|
|
<div v-if="tools.isLogged() && site.confpages.enableRegMultiChoice">
|
2022-12-09 01:03:52 +01:00
|
|
|
<CVerifyEmail v-if="!tools.isEmailVerified() && !tools.TelegVerificato()">
|
|
|
|
|
</CVerifyEmail>
|
|
|
|
|
</div>
|
2022-02-24 23:36:27 +01:00
|
|
|
|
2022-12-17 22:12:18 +01:00
|
|
|
<div v-if="userStore.isUserWaitingVerifAportador()" class="centeritems">
|
|
|
|
|
<q-banner inline-actions rounded class="bg-orange text-black">
|
2022-02-21 18:14:38 +01:00
|
|
|
<template v-slot:avatar>
|
2022-12-09 01:03:52 +01:00
|
|
|
<q-icon name="info" color="primary" />
|
2022-02-21 18:14:38 +01:00
|
|
|
</template>
|
2022-12-09 01:03:52 +01:00
|
|
|
<strong
|
|
|
|
|
>Appena sarai abilitato, dal tuo invitante
|
|
|
|
|
{{ tools.getAportadorSolidario() }}, ti arriverà una
|
|
|
|
|
<strong>notifica su Telegram</strong>.<br /><br />
|
|
|
|
|
Se non dovesse arrivarti entro 24 ore prova a mandargli un
|
|
|
|
|
messaggio.<br />
|
2022-02-28 17:20:31 +01:00
|
|
|
</strong>
|
|
|
|
|
|
|
|
|
|
<q-btn
|
|
|
|
|
rounded
|
|
|
|
|
class="q-ma-sm"
|
|
|
|
|
color="primary"
|
|
|
|
|
icon="fas fa-user"
|
|
|
|
|
:to="tools.getLinkProfileAportador()"
|
2022-12-09 01:03:52 +01:00
|
|
|
:label="`Profilo di ` + tools.getAportadorSolidario()"
|
|
|
|
|
>
|
2022-02-28 17:20:31 +01:00
|
|
|
</q-btn>
|
2022-02-21 18:14:38 +01:00
|
|
|
</q-banner>
|
|
|
|
|
</div>
|
2022-02-12 02:19:49 +01:00
|
|
|
</div>
|
|
|
|
|
</template>
|
|
|
|
|
|
|
|
|
|
<script lang="ts" src="./CUserNonVerif.ts">
|
|
|
|
|
</script>
|
|
|
|
|
|
|
|
|
|
<style lang="scss" scoped>
|
|
|
|
|
@import './CUserNonVerif.scss';
|
|
|
|
|
</style>
|