2022-02-17 17:43:27 +01:00
|
|
|
<template>
|
2022-02-22 15:24:16 +01:00
|
|
|
<div v-if="globalStore.serverError">
|
|
|
|
|
<q-banner
|
2022-02-17 17:43:27 +01:00
|
|
|
rounded
|
|
|
|
|
dense
|
2022-02-22 15:24:16 +01:00
|
|
|
class="bg-negative text-white"
|
2022-02-17 17:43:27 +01:00
|
|
|
color="primary q-title"
|
|
|
|
|
style="text-align: center;">
|
|
|
|
|
<template v-slot:avatar>
|
|
|
|
|
<q-icon name="fas fa-exclamation-triangle" color="yellow" size="xs" />
|
|
|
|
|
</template>
|
2022-02-22 15:24:16 +01:00
|
|
|
<span class="mybanner">Errore di Connessione al Server</span>
|
|
|
|
|
<p v-if="globalStore.serverMsgError" class="errore">{{globalStore.getMsgServerError()}}</p>
|
2022-03-03 20:31:47 +01:00
|
|
|
<p v-if="tools.isCurrentUrlSignUp() && globalStore.isErroreDispositivoServer()" class="errore">Se l'Errore persiste, significa che questo browser non riesce a collegarsi col Server.<br>
|
|
|
|
|
Soluzione: Provare ad installare un altro browser:<br>
|
|
|
|
|
👉🏻 Clicca per installare <a href="https://play.google.com/store/apps/details?id=com.opera.browser&hl=it&gl=IT">Opera per Android</a>. </p>
|
2022-02-22 15:24:16 +01:00
|
|
|
|
|
|
|
|
<q-btn
|
|
|
|
|
size="md"
|
|
|
|
|
color="secondary" rounded icon="refresh"
|
|
|
|
|
class="btnNewVersShow" @click="reloadPage" label="Riprova">
|
|
|
|
|
</q-btn>
|
|
|
|
|
</q-banner>
|
2022-02-17 17:43:27 +01:00
|
|
|
</div>
|
|
|
|
|
</template>
|
|
|
|
|
|
|
|
|
|
<script lang="ts" src="./CFirstPageApp.ts">
|
|
|
|
|
</script>
|
|
|
|
|
|
|
|
|
|
<style lang="scss" scoped>
|
|
|
|
|
@import './CFirstPageApp.scss';
|
|
|
|
|
</style>
|