Privacy Policy
This commit is contained in:
@@ -6,11 +6,11 @@
|
||||
{{t('cookies')}}
|
||||
<template v-slot:action>
|
||||
<div class="row justify-center margin_buttons_cook q-gutter-lg text-center" >
|
||||
<q-btn
|
||||
v-if="disableDecline === false" flat color="white" label="Declina"
|
||||
@click="decline"></q-btn>
|
||||
<q-btn flat color="white" label="INFO" type="a" :href="urlInfo" @click="clickInfo"></q-btn>
|
||||
<q-btn flat color="white" label="OK" @click="accept"></q-btn>
|
||||
<q-btn label="INFO" to="/policy"></q-btn>
|
||||
<q-btn
|
||||
color="red" label="RIFIUTA"
|
||||
@click="decline"></q-btn>
|
||||
<q-btn color="green" label="ACCETTA" @click="accept"></q-btn>
|
||||
</div>
|
||||
</template>
|
||||
</q-banner>
|
||||
|
||||
@@ -207,11 +207,11 @@ export default defineComponent({
|
||||
// console.log('----------- valori.value', valori.value)
|
||||
// console.log('----------- arrtempOpt.value', arrtempOpt.value)
|
||||
|
||||
localStorage.setItem(props.tablesel + num + props.optval, id)
|
||||
localStorage.setItem(props.tablesel + num + props.optlab, tools.getValueByFunzOrVal(rec, props.optlab))
|
||||
tools.localStSetItem(props.tablesel + num + props.optval, id)
|
||||
tools.localStSetItem(props.tablesel + num + props.optlab, tools.getValueByFunzOrVal(rec, props.optlab))
|
||||
|
||||
num += 1
|
||||
localStorage.setItem(props.tablesel + 'NUM', num.toString())
|
||||
tools.localStSetItem(props.tablesel + 'NUM', num.toString())
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -222,7 +222,7 @@ export default defineComponent({
|
||||
function changeval(newval: any) {
|
||||
console.log(' ½½½½½½½ changeval', newval)
|
||||
if (props.multiple || props.multiselect_by_server) {
|
||||
// localStorage.setItem(props.tablesel + '_' + newval, valori.value[newval])
|
||||
// tools.localStSetItem(props.tablesel + '_' + newval, valori.value[newval])
|
||||
|
||||
if (props.type_out === costanti.FieldType.object) {
|
||||
const arrout = []
|
||||
|
||||
@@ -7,6 +7,7 @@ import { Logo } from '../../components/logo'
|
||||
// import 'vue-country-code/dist/vue-country-code.css'
|
||||
|
||||
import { CTitleBanner } from '../CTitleBanner'
|
||||
import { PagePolicy } from '../PagePolicy'
|
||||
import { computed, defineComponent, reactive, ref, watch } from 'vue'
|
||||
import { CSignIn } from '@/components/CSignIn'
|
||||
import { useQuasar } from 'quasar'
|
||||
@@ -29,7 +30,7 @@ import { useGlobalStore } from '@store/globalStore'
|
||||
|
||||
export default defineComponent({
|
||||
name: 'CSignUp',
|
||||
components: { Logo, CTitleBanner },
|
||||
components: { Logo, CTitleBanner, PagePolicy },
|
||||
props: {
|
||||
showadultcheck: {
|
||||
type: Boolean,
|
||||
@@ -74,7 +75,7 @@ export default defineComponent({
|
||||
const duplicate_email = ref(false)
|
||||
const duplicate_username = ref(false)
|
||||
const visureg = ref(false)
|
||||
|
||||
const showpolicy = ref(false)
|
||||
|
||||
const globalStore = useGlobalStore()
|
||||
|
||||
@@ -299,6 +300,7 @@ export default defineComponent({
|
||||
allowSubmit,
|
||||
myRuleEmail,
|
||||
visureg,
|
||||
showpolicy,
|
||||
}
|
||||
},
|
||||
})
|
||||
|
||||
@@ -204,9 +204,6 @@
|
||||
|
||||
</q-input>
|
||||
|
||||
<div v-if="!tools.isMobile()"><br></div>
|
||||
|
||||
|
||||
<!--<vue-tel-input
|
||||
v-if="showcell"
|
||||
@country-changed="intcode_change()"
|
||||
@@ -218,6 +215,34 @@
|
||||
wrapperClasses="clCellCode">
|
||||
</vue-tel-input>-->
|
||||
|
||||
<div class="text-center">
|
||||
<q-btn label="Mostra Privacy" @click="showpolicy = true"></q-btn>
|
||||
</div>
|
||||
|
||||
<q-dialog v-model="showpolicy">
|
||||
<q-card class="dialog_card">
|
||||
<q-toolbar class="bg-primary text-white">
|
||||
<q-toolbar-title>
|
||||
Privacy Policy
|
||||
</q-toolbar-title>
|
||||
<q-btn flat round color="white" icon="close" v-close-popup></q-btn>
|
||||
</q-toolbar>
|
||||
<q-card-section class="inset-shadow">
|
||||
<PagePolicy
|
||||
owneremail="info@riso.app"
|
||||
SiteName="Riso.app"
|
||||
ownerDataName="RISO"
|
||||
managerData="Paolo Arena"
|
||||
includeData="recapiti (indirizzo email, telefono (facoltativo))"
|
||||
url="riso.app"
|
||||
lastdataupdate="12/03/2022"
|
||||
country="Italia"
|
||||
>
|
||||
|
||||
</PagePolicy>
|
||||
</q-card-section>
|
||||
</q-card>
|
||||
</q-dialog>
|
||||
|
||||
<q-checkbox
|
||||
v-model="signup.terms"
|
||||
|
||||
@@ -429,9 +429,7 @@
|
||||
if a processing operation is in progress, obtain access to the data and information relating to the
|
||||
processing and request a copy of the data;
|
||||
obtain rectification of inaccurate data and integration of incomplete personal data;
|
||||
|
||||
|
||||
|
||||
</p>
|
||||
|
||||
|
||||
<p class="text-subtitle2">8. Access rights, deletion, restriction and portability.</p>
|
||||
|
||||
Reference in New Issue
Block a user