diff --git a/src/pages/Privacy.vue b/src/pages/Privacy.vue index 42d9ded280a3b02f5b489717edee6ac26e5cb34c..ff0a23fb3730d949929347d5fb25992060941369 100644 --- a/src/pages/Privacy.vue +++ b/src/pages/Privacy.vue @@ -20,12 +20,19 @@ div(class='policy') <br> p <b>Data transfers</b> p In case this application goes internationally and gets worldwildly used, your data might be transfered to an other country for some legal purposes but we will always continue protecting your information with appropriate safeguards, but it may be subject to the legal jurisdiction of those countries and governmental authorities in those countries. - <br> - +<br> +<q-checkbox dense v-model="teal" label="Please check the box if your have read our policy" color="teal" /> q-btn.bg-grey-2.fixed-down-left.q-ma-sm(@click='$router.go(-1)', icon='arrow_back', label='Back') </template> <script> +export default { + data () { + return { + teal: false, + } + } +} </script> <style>