2022-02-12 02:19:49 +01:00
|
|
|
<template>
|
2022-12-17 22:12:18 +01:00
|
|
|
|
2023-12-02 15:23:58 +01:00
|
|
|
<div v-if="!globalStore.serverError" class="q-ma-sm">
|
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">
|
2023-12-02 15:23:58 +01:00
|
|
|
<q-banner inline-actions rounded class="bg-light-grey text-black">
|
|
|
|
|
<div class="text-h7"
|
|
|
|
|
>Sei in attesa di essere abilitato da
|
|
|
|
|
{{ tools.getAportadorSolidario() }}.<br>
|
|
|
|
|
Ti arriverà una notifica sulla Chat Telegram <strong>'BOT RISO'</strong>.<br /><br />
|
|
|
|
|
Se non dovesse arrivarti entro qualche ora, contattalo per ricordarglielo.<br />
|
|
|
|
|
</div>
|
2022-02-28 17:20:31 +01:00
|
|
|
|
|
|
|
|
<q-btn
|
|
|
|
|
rounded
|
|
|
|
|
class="q-ma-sm"
|
|
|
|
|
color="primary"
|
|
|
|
|
:to="tools.getLinkProfileAportador()"
|
2023-12-02 15:23:58 +01:00
|
|
|
:label="`Profilo di ` + tools.getAportadorSolidario()"
|
2022-12-09 01:03:52 +01:00
|
|
|
>
|
2022-02-28 17:20:31 +01:00
|
|
|
</q-btn>
|
2023-06-07 10:15:10 +02:00
|
|
|
<br><br>
|
2023-12-02 15:23:58 +01:00
|
|
|
<div class="text-h7"> Per supporto ed Aiuto:</div>
|
2023-06-07 10:15:10 +02:00
|
|
|
<q-btn
|
|
|
|
|
rounded
|
|
|
|
|
type="a"
|
|
|
|
|
class="q-ma-sm"
|
|
|
|
|
color="primary"
|
|
|
|
|
icon="fab fa-telegram"
|
|
|
|
|
href="https://t.me/surya1977"
|
|
|
|
|
:label="`Contatta l'Assistenza (Paolo)`"
|
|
|
|
|
>
|
|
|
|
|
</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>
|