- 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:
@@ -8,6 +8,9 @@
|
||||
</span>
|
||||
|
||||
<div class="landing">
|
||||
<div style="height: 50px;">
|
||||
|
||||
</div>
|
||||
<div class="text-center">
|
||||
<q-img src="statics/images/background.jpg" class="logo"></q-img>
|
||||
</div>
|
||||
@@ -89,6 +92,8 @@
|
||||
</div>
|
||||
</section> -->
|
||||
|
||||
|
||||
|
||||
<div v-if="isLogged">
|
||||
<CVerifyEmail v-if="!isEmailVerified">
|
||||
|
||||
@@ -327,13 +332,10 @@
|
||||
|
||||
</CStatusReg>
|
||||
|
||||
|
||||
<div v-if="isLogged">
|
||||
<CStatus></CStatus>
|
||||
<CStatus :dense="false"></CStatus>
|
||||
</div>
|
||||
|
||||
|
||||
|
||||
</div>
|
||||
</CMyPage>
|
||||
</q-page>
|
||||
|
||||
5
src/root/intro/intro.scss
Normal file
5
src/root/intro/intro.scss
Normal file
@@ -0,0 +1,5 @@
|
||||
.signup {
|
||||
width: 100%;
|
||||
margin: 0 auto;
|
||||
max-width: 450px;
|
||||
}
|
||||
30
src/root/intro/intro.ts
Normal file
30
src/root/intro/intro.ts
Normal file
@@ -0,0 +1,30 @@
|
||||
import { Component } from 'vue-property-decorator'
|
||||
|
||||
import { CMyPage } from '../../components/CMyPage/index'
|
||||
|
||||
import { tools } from '@src/store/Modules/tools'
|
||||
import { Screen } from 'quasar'
|
||||
import { CCopyBtn, CGuidelines, CImgText, CSignUpNotevole, CTitleBanner, CVideoPromo } from '@components'
|
||||
import MixinBase from '@src/mixins/mixin-base'
|
||||
import { static_data } from '@src/db/static_data'
|
||||
import { UserStore } from '@modules'
|
||||
|
||||
@Component({
|
||||
mixins: [MixinBase],
|
||||
components: { CMyPage, CTitleBanner, CImgText, CCopyBtn, CVideoPromo, CGuidelines, CSignUpNotevole }
|
||||
})
|
||||
export default class Intro extends MixinBase {
|
||||
public $t: any
|
||||
public $q
|
||||
public msg: string = ''
|
||||
|
||||
get static_data() {
|
||||
return static_data
|
||||
}
|
||||
|
||||
public created() {
|
||||
if (!tools.getCookie(tools.APORTADOR_SOLIDARIO, ''))
|
||||
tools.setCookie(tools.APORTADOR_SOLIDARIO, this.$route.params.invited)
|
||||
}
|
||||
|
||||
}
|
||||
33
src/root/intro/intro.vue
Normal file
33
src/root/intro/intro.vue
Normal file
@@ -0,0 +1,33 @@
|
||||
<template>
|
||||
<q-page>
|
||||
<CMyPage title="">
|
||||
<div class="q-ma-xs">
|
||||
<div class="text-center">
|
||||
<q-img src="statics/images/background.jpg" class="logo"></q-img>
|
||||
</div>
|
||||
|
||||
<CGuidelines>
|
||||
|
||||
</CGuidelines>
|
||||
|
||||
<CVideoPromo>
|
||||
|
||||
</CVideoPromo>
|
||||
|
||||
<q-page padding class="signup">
|
||||
<CSignUpNotevole :showadultcheck="true" :showcell="true" :showaportador="true" :shownationality="true">
|
||||
|
||||
</CSignUpNotevole>
|
||||
</q-page>
|
||||
|
||||
</div>
|
||||
</CMyPage>
|
||||
</q-page>
|
||||
</template>
|
||||
|
||||
<script lang="ts" src="./intro.ts">
|
||||
</script>
|
||||
|
||||
<style lang="scss" scoped>
|
||||
@import './intro.scss';
|
||||
</style>
|
||||
5
src/root/invite/invite.scss
Normal file
5
src/root/invite/invite.scss
Normal file
@@ -0,0 +1,5 @@
|
||||
.mypre {
|
||||
white-space: pre-wrap;
|
||||
font-size: 1rem;
|
||||
font-family: 'Source Sans Pro', 'Helvetica Neue', Arial, sans-serif;
|
||||
}
|
||||
52
src/root/invite/invite.ts
Normal file
52
src/root/invite/invite.ts
Normal file
@@ -0,0 +1,52 @@
|
||||
import { Component } from 'vue-property-decorator'
|
||||
|
||||
import { CMyPage } from '../../components/CMyPage/index'
|
||||
|
||||
import { tools } from '@src/store/Modules/tools'
|
||||
import { Screen } from 'quasar'
|
||||
import { CCopyBtn, CImgText, CTitleBanner } from '@components'
|
||||
import MixinBase from '@src/mixins/mixin-base'
|
||||
import { static_data } from '@src/db/static_data'
|
||||
import { UserStore } from '@modules'
|
||||
|
||||
@Component({
|
||||
mixins: [MixinBase],
|
||||
components: { CMyPage, CTitleBanner, CImgText, CCopyBtn }
|
||||
})
|
||||
export default class Invite extends MixinBase {
|
||||
public $t: any
|
||||
public $q
|
||||
public msg: string = ''
|
||||
|
||||
get static_data() {
|
||||
return static_data
|
||||
}
|
||||
|
||||
public mymsg() {
|
||||
let messaggio = this.getValDbLang('MSG_SHARE', false, '')
|
||||
|
||||
return tools.myprintf(messaggio, [{strin: 'linkreg', strout: this.getRefLink}])
|
||||
|
||||
// return tools.myprintf(messaggio, [{
|
||||
// videointro: static_data.costanti.videointro,
|
||||
// paginaspiegazione: static_data.costanti.paginaspiegazione,
|
||||
// linkzoom: tools.getLinkZoom()
|
||||
// }])
|
||||
|
||||
// return this.$t('reg.msginvito', {
|
||||
// videointro: tools.getlinkhref(static_data.costanti.videointro, this.$t('reg.videointro')),
|
||||
// paginavideo: tools.getlinkhref(static_data.costanti.paginavideo, 'Video'),
|
||||
// linkzoom: tools.getlinkhref(tools.getLinkZoom(), 'Zoom')
|
||||
// })
|
||||
}
|
||||
|
||||
public copytoclip() {
|
||||
tools.copyStringToClipboard(this, this.mymsg(), false)
|
||||
}
|
||||
|
||||
get getRefLink() {
|
||||
return UserStore.getters.getRefLink(UserStore.state.my.username)
|
||||
}
|
||||
|
||||
|
||||
}
|
||||
41
src/root/invite/invite.vue
Normal file
41
src/root/invite/invite.vue
Normal file
@@ -0,0 +1,41 @@
|
||||
<template>
|
||||
<q-page>
|
||||
<CMyPage title="">
|
||||
<div class="q-ma-md">
|
||||
|
||||
<CTitleBanner icon="send" class="q-pa-xs" :title="$t('reg.messaggio_invito')" bgcolor="bg-primary"
|
||||
clcolor="text-white"
|
||||
mystyle=" " canopen="true">
|
||||
|
||||
<p>
|
||||
{{$t('reg.messaggio_invito_msg')}}
|
||||
</p>
|
||||
<br>
|
||||
|
||||
<div class="bg-grey-3 q-ma-sm q-pa-md">
|
||||
<pre class="mypre">{{mymsg()}}</pre>
|
||||
</div>
|
||||
|
||||
<div class="q-ma-sm q-pa-md row justify-center">
|
||||
<q-btn rounded color="primary" icon="far fa-copy" :label="$t('reg.copia_messaggio')"
|
||||
@click="copytoclip()"></q-btn>
|
||||
</div>
|
||||
|
||||
<br>
|
||||
<CCopyBtn :title="$t('reg.reflink')" :texttocopy="getRefLink">
|
||||
|
||||
</CCopyBtn>
|
||||
|
||||
</CTitleBanner>
|
||||
|
||||
</div>
|
||||
</CMyPage>
|
||||
</q-page>
|
||||
</template>
|
||||
|
||||
<script lang="ts" src="./invite.ts">
|
||||
</script>
|
||||
|
||||
<style lang="scss" scoped>
|
||||
@import './invite.scss';
|
||||
</style>
|
||||
Reference in New Issue
Block a user