2022-03-01 23:50:47 +01:00
|
|
|
<template>
|
|
|
|
|
<div v-if="!tools.isLogged()">
|
|
|
|
|
<div class="q-pa-md q-gutter-sm">
|
2022-03-02 20:18:49 +01:00
|
|
|
|
|
|
|
|
<div id="logo" class="text-center">
|
|
|
|
|
<img id="logoimg" :src="tools.getimglogo()" alt="logo APP">
|
|
|
|
|
</div>
|
|
|
|
|
|
2022-03-01 23:50:47 +01:00
|
|
|
<q-banner rounded class="bg-primary text-white">
|
|
|
|
|
<div class="text-h6 text-center">
|
|
|
|
|
Accedi al menu inserendo le tue credenziali 🔑<br><br>
|
|
|
|
|
📝 Non sei <strong>Registrato</strong>?<br>
|
|
|
|
|
👉🏻 Chiedi in chat il link a chi ti ha <strong>invitato</strong>.<br>
|
|
|
|
|
</div>
|
|
|
|
|
<template v-slot:action>
|
2022-03-02 20:18:49 +01:00
|
|
|
<q-btn flat color="white" label="Accedi al Login" @click="tools.openrighttoolbar()"/>
|
2022-03-01 23:50:47 +01:00
|
|
|
</template>
|
|
|
|
|
</q-banner>
|
|
|
|
|
</div>
|
|
|
|
|
|
|
|
|
|
<div
|
|
|
|
|
v-if="!tools.isLogged() && static_data.functionality.ENABLE_REGISTRATION && static_data.functionality.SHOW_REG_BUTTON"
|
|
|
|
|
style="margin:20px; text-align: center;">
|
2022-03-02 20:18:49 +01:00
|
|
|
|
|
|
|
|
<q-btn rounded size="lg" color="primary" @click="tools.openrighttoolbar()">{{ $t('login.enter') }}
|
2022-03-01 23:50:47 +01:00
|
|
|
</q-btn>
|
|
|
|
|
</div>
|
|
|
|
|
|
|
|
|
|
</div>
|
|
|
|
|
</template>
|
|
|
|
|
|
|
|
|
|
<script lang="ts" src="./CCheckIfIsLogged.ts">
|
|
|
|
|
</script>
|
|
|
|
|
|
|
|
|
|
<style lang="scss" scoped>
|
|
|
|
|
@import './CCheckIfIsLogged.scss';
|
|
|
|
|
</style>
|