Inviato al Server il primo freeplanet.app

e popolodelnuovomondo.insiemesipuo.app
This commit is contained in:
paoloar77
2022-01-04 19:56:33 +01:00
parent 3344c565f0
commit 1008f3a166
35 changed files with 572 additions and 103 deletions

View File

@@ -196,9 +196,10 @@
}}
</div>
<div class="text-center">
<span class="text-white" v-if="Verificato()"> {{t('reg.verificato')}} </span>
<span class="text-white background-red" v-else> {{t('reg.non_verificato')}} </span>
<div v-if="isLogged()"
class="text-verified">
<!-- <span class="text-white" v-if="Verificato()"> {{t('reg.verificato')}} </span> -->
<span class="text-user text-italic bg-red" v-if="!Verificato()"> {{t('reg.non_verificato')}} </span>
</div>
<div v-if="isLogged()" id="user-actions" class="column justify-center q-gutter-sm q-ma-sm center-150">

View File

@@ -58,7 +58,7 @@ const routes_admin: IListRoutes[] = [
{
active: true,
order: 10,
path: '/admin',
path: '/admin/sites',
materialIcon: 'event_seat',
name: 'pages.Sites',
component: () => import('@/rootgen/admin/sites/sites.vue'),

View File

@@ -123,12 +123,15 @@ export interface ISites {
manageremail?: string
replyTo?: string
host?: string
host_test?: string
portapp?: string
dir?: string
email_from?: string
email_pwd?: string
telegram_key?: string
telegram_bot_name?: string
telegram_key_test?: string
telegram_bot_name_test?: string
pathreg_add?: string
}

View File

@@ -21,12 +21,35 @@
</CVerifyTelegram>
<div v-if="isUserOk()">
<CFinder/>
<q-banner rounded class="bg-primary text-white">
<div class="text-h6 text-center">
Ora Accedi al Bot Telegram <br>
per vedere tutti i Menu e le chat !
</div>
<template v-slot:action>
<q-btn flat color="white" label="Accedi al Bot Telegram" @click="getLinkBotTelegram()"/>
</template>
</q-banner>
</div>
</div>
<div v-else>
<div v-if="!isLogged() && static_data.functionality.ENABLE_REGISTRATION && static_data.functionality.SHOW_REG_BUTTON" style="margin:20px; text-align: center;">
<div class="q-pa-md q-gutter-sm">
<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>
<q-btn flat color="white" label="Accedi al Login" @click="openrighttoolbar"/>
</template>
</q-banner>
</div>
<div
v-if="!isLogged() && static_data.functionality.ENABLE_REGISTRATION && static_data.functionality.SHOW_REG_BUTTON"
style="margin:20px; text-align: center;">
<q-btn rounded size="lg" color="primary" @click="openrighttoolbar">{{ $t('login.enter') }}
</q-btn>
</div>

View File

@@ -760,12 +760,16 @@ const msg_it = {
manageremail: 'Email Gestione',
replyTo: 'Reply To',
host: 'Host',
host_test: 'Host Test',
portapp: 'Porta',
dir: 'Directory',
dir: 'Dir',
dir_test: 'Dir Test',
email_from: 'Email From',
email_pwd: 'Email Pwd',
telegram_key: 'Chiave Bot Telegram',
telegram_bot_name: 'Telegram BotName',
telegram_key: 'Chiave Bot',
telegram_bot_name: 'BotName',
telegram_key_test: 'Chiave Bot Test',
telegram_bot_name_test: 'BotName Test',
pathreg_add: 'Suffisso',
},
skill: {

View File

@@ -461,12 +461,15 @@ export const colTableSites = [
AddCol({ name: 'manageremail', label_trans: 'sites.manageremail', fieldtype: costanti.FieldType.string }),
AddCol({ name: 'replyTo', label_trans: 'sites.replyTo', fieldtype: costanti.FieldType.string }),
AddCol({ name: 'host', label_trans: 'sites.host', fieldtype: costanti.FieldType.string }),
AddCol({ name: 'host_test', label_trans: 'sites.host_test', fieldtype: costanti.FieldType.string }),
AddCol({ name: 'portapp', label_trans: 'sites.portapp', fieldtype: costanti.FieldType.string }),
AddCol({ name: 'dir', label_trans: 'sites.dir', fieldtype: costanti.FieldType.string }),
AddCol({ name: 'dir_test', label_trans: 'sites.dir_test', fieldtype: costanti.FieldType.string }),
AddCol({ name: 'email_from', label_trans: 'sites.email_from', fieldtype: costanti.FieldType.string }),
AddCol({ name: 'email_pwd', label_trans: 'sites.email_pwd', fieldtype: costanti.FieldType.string }),
AddCol({ name: 'telegram_key', label_trans: 'sites.telegram_key', fieldtype: costanti.FieldType.string }),
AddCol({ name: 'telegram_bot_name', label_trans: 'sites.telegram_bot_name', fieldtype: costanti.FieldType.string }),
AddCol({ name: 'telegram_key_test', label_trans: 'sites.telegram_key_test', fieldtype: costanti.FieldType.string }),
AddCol({ name: 'telegram_bot_name_test', label_trans: 'sites.telegram_bot_name_test', fieldtype: costanti.FieldType.string }),
AddCol({ name: 'pathreg_add', label_trans: 'sites.pathreg_add', fieldtype: costanti.FieldType.string }),
AddCol({ name: 'who', label_trans: 'sites.who', fieldtype: costanti.FieldType.string }),
AddCol({ name: 'status', label_trans: 'sites.status', fieldtype: costanti.FieldType.string }),