- Nuovi Passi da completare: Leggere le Linee Guida e accettare le condizioni

- Aggiunti i Video e confermare di averli visti
 - In "La tua Lavagna" sono stati aggiunti come requisiti: (Accetto le Linee Guida e Vedo il Video di AYNI)
 - Aggiunto bottone "Invita Persone": apre la pagina dove c'è il messaggio da inviare alle persone.
 - La nuova pagina di registrazione https://test.gifteconomy.app/signup/paoloar77, comprende ora il testo delle Linee Guida + i Video, ed in fondo i campi per registrarsi.
This commit is contained in:
Paolo Arena
2020-02-07 22:08:29 +01:00
parent b234432e4f
commit 8e6e356125
16 changed files with 237 additions and 20 deletions

View File

@@ -12,6 +12,7 @@ const functionality: IFunctionality = {
SHOW_USER_MENU: true, // Cambiare con true
SHOW_PROFILE: true,
ENABLE_REGISTRATION: true, // Cambiare con true
ENABLE_REG_AYNI: true,
SHOW_NEWSLETTER: false,
SHOW_ONLY_POLICY: true,
ENABLE_TODOS_LOADING: false,
@@ -260,6 +261,17 @@ const baseroutes: IListRoutes[] = [
inmenu: true,
infooter: true
},
{
active: true,
order: 20,
path: '/signup/:invited',
materialIcon: 'how_to_reg',
name: 'pages.presentazione',
component: () => import('@/root/intro/intro.vue'),
inmenu: false,
infooter: true,
separator: false
},
{
active: false,
order: 30,
@@ -384,6 +396,17 @@ const baseroutes: IListRoutes[] = [
infooter: false,
separator: false
},
{
order: 2000,
path: '/invite',
materialIcon: 'how_to_reg',
name: 'pages.regok',
component: () => import('@/root/invite/invite.vue'),
inmenu: false,
infooter: false,
separator: false
},
/*
{
active: functionality.ENABLE_REGISTRATION,
order: 1000,
@@ -395,6 +418,7 @@ const baseroutes: IListRoutes[] = [
infooter: false,
separator: false
},
*/
{
active: true,
order: 1000,
@@ -444,9 +468,16 @@ const lang_available: ILang[] = [
// { label: 'German', icon: 'fa-flag-de', value: 'de', image: '../statics/images/de.png', short: 'DE' },
]
const costanti = {
videointro: 'https://youtu.be/dbscY8jWDMM',
nascita_ayni: 'https://youtu.be/3JDRkN9z_rM',
paginaspiegazione: 'https://ayni.gifteconomy.app/what/',
}
export const static_data = {
functionality,
baseroutes,
costanti,
routes,
lang_available,
preLoadImages,