- 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

@@ -5,8 +5,10 @@ const msg_website = {
profile: 'Il tuo Profilo',
payment: 'Pagamenti',
regok: 'Registrazione Confermata',
presentazione: 'Presentazione',
invita: 'Invita Persone',
SignUp: 'Nuova Registrazione',
SignUp_alreadylista: 'Registrazione per chi è gia nella Lista!',
SignUp_alreadylista: 'Registration for those who are already in the List!',
SignUp2: 'Registrazione',
SignIn: 'Login',
status: 'Statistiche',
@@ -64,9 +66,6 @@ const msg_website = {
faq: 'DOMANDE FREQUENTI (FAQ)',
advise: 'SUGGERIMENTI',
download: 'MATERIALE DISPONIBILE',
dashboard: {
madegift: 'Hai fatto il tuo dono?'
},
},
},
es: {
@@ -74,7 +73,10 @@ const msg_website = {
home: 'Home',
profile: 'Tu Perfil',
payment: 'Paiements',
regok: 'Registro confirmado',
invita: 'Invitar a la gente',
SignUp: 'Registro',
SignUp_alreadylista: 'Inscripción para los que ya están en la Lista!',
SignUp2: 'Registro',
SignIn: 'Login',
status: 'Statistica',
@@ -119,9 +121,6 @@ const msg_website = {
faq: 'PREGUNTAS FRECUENTES (FAQ)',
advise: 'CONSEJOS',
download: 'MATERIAL DISPONIBLES',
dashboard: {
madegift: '¿Hiciste tu regalo?'
},
},
},
fr: {
@@ -132,7 +131,10 @@ const msg_website = {
home: 'Home',
profile: 'Votre profil',
payment: 'paiements',
regok: 'Inscription confirmée',
invita: 'Inviter des personnes',
SignUp: 'Inscription',
SignUp_alreadylista: 'Inscription pour ceux qui sont déjà inscrits sur la liste!',
SignUp2: 'Inscription',
SignIn: 'Login',
status: 'État actuel',
@@ -165,19 +167,16 @@ const msg_website = {
sottoTitoloApp3: '..',
sottoTitoloApp4: '',
},
text: {
dashboard: {
madegift: 'Avez-vous fait votre cadeau?'
},
}
},
enUs: {
pages: {
home: 'Home',
profile: 'Your Profile',
payment: 'Payments',
regok: 'Registration Confirmed',
invita: 'Invite People',
SignUp: 'Registration',
SignUp_alreadylista: 'Registration for those who are already in the List!',
SignUp2: 'Registration',
SignIn: 'Login',
status: 'Current state',
@@ -222,9 +221,6 @@ const msg_website = {
faq: 'FREQUENTLY ASKED QUESTIONS (FAQ)',
advise: 'ADVISE',
download: 'AVAILABLE DOCUMENTS',
dashboard: {
madegift: 'Did you make your gift?'
},
},
},
de: {

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,