GdprNotice.vue 6.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156
  1. <template>
  2. <v-layout justify-center align-center>
  3. <v-flex xs12 sm8>
  4. <v-card>
  5. <v-container fluid fill-height>
  6. <v-layout column align-center>
  7. <v-card-title class="headline d-block text-md-center font-weight-bold">GDPR notice</v-card-title>
  8. <v-card-text>
  9. <!-- eslint-disable -->
  10. <h2>Collected data and their usage</h2>
  11. <p>Here is a summary of every data that is collected.<br>
  12. This website's main goal is to collect data as part of public research. By using it, you consent to every data collection during its usage.</p>
  13. <v-data-table
  14. :headers="collectedHeaders"
  15. :items="collected"
  16. hide-actions
  17. class="mb-5"
  18. >
  19. <template v-slot:items="props">
  20. <td v-html="props.item.data" />
  21. <td v-html="props.item.usage" />
  22. </template>
  23. </v-data-table>
  24. <h1>Privacy Policy for ULCO</h1>
  25. <p>At LISIC, accessible from <a href="https://diran.univ-littoral.fr">https://diran.univ-littoral.fr</a>, one of our main priorities is the privacy of our visitors. This Privacy Policy document contains types of information that is collected and recorded by LISIC and how we use it.</p>
  26. <p>If you have additional questions or require more information about our Privacy Policy, do not hesitate to contact us through email at direction [at] lisic.univ-littoral.fr</p>
  27. <h2>General Data Protection Regulation (GDPR)</h2>
  28. <p>We are a Data Controller of your information.</p>
  29. <p>ULCO legal basis for collecting and using the personal information described in this Privacy Policy depends on the Personal Information we collect and the specific context in which we collect the information:</p>
  30. <ul>
  31. <li>ULCO needs to perform a contract with you</li>
  32. <li>You have given ULCO permission to do so</li>
  33. <li>Processing your personal information is in ULCO legitimate interests</li>
  34. <li>ULCO needs to comply with the law</li>
  35. </ul>
  36. <p>ULCO will retain your personal information only for as long as is necessary for the purposes set out in this Privacy Policy. We will retain and use your information to the extent necessary to comply with our legal obligations, resolve disputes, and enforce our policies.</p>
  37. <p>If you are a resident of the European Economic Area (EEA), you have certain data protection rights. If you wish to be informed what Personal Information we hold about you and if you want it to be removed from our systems, please contact us.</p>
  38. <p>In certain circumstances, you have the following data protection rights:</p>
  39. <ul>
  40. <li>The right to access, update or to delete the information we have on you</li>
  41. <li>The right of rectification.</li>
  42. <li>The right to object</li>
  43. <li>The right of restriction</li>
  44. <li>The right to data portability</li>
  45. <li>The right to withdraw consent</li>
  46. </ul>
  47. <h2>Collected data and their usage</h2>
  48. <p>Here is a summary of every data that is collected.<br>
  49. This website's main goal is to collect data as part of public research. By using it, you consent to every data collection during its usage.</p>
  50. <v-data-table
  51. :headers="collectedHeaders"
  52. :items="collected"
  53. hide-actions
  54. class="mb-5"
  55. >
  56. <template v-slot:items="props">
  57. <td v-html="props.item.data" />
  58. <td v-html="props.item.usage" />
  59. </template>
  60. </v-data-table>
  61. <h2>Log Files</h2>
  62. <p>LISIC follows a standard procedure of using log files. These files log visitors when they visit websites. All hosting companies do this and a part of hosting services' analytics. The information collected by log files include internet protocol (IP) addresses, browser type, Internet Service Provider (ISP), date and time stamp, referring/exit pages, and possibly the number of clicks. These are not linked to any information that is personally identifiable. The purpose of the information is for analyzing trends, administering the site, tracking users' movement on the website, and gathering demographic information.</p>
  63. <h2>Cookies and Web Beacons</h2>
  64. <p>Like any other website, LISIC uses 'cookies'. These cookies are used to store information including visitors' preferences, and the pages on the website that the visitor accessed or visited. The information is used to identify each user by a unique, and random, identifier, as part of the research experiments.</p>
  65. <h2>Children's Information</h2>
  66. <p>Another part of our priority is adding protection for children while using the internet. We encourage parents and guardians to observe, participate in, and/or monitor and guide their online activity.</p>
  67. <p>LISIC does not knowingly collect any Personal Identifiable Information from children under the age of 13. If you think that your child provided this kind of information on our website, we strongly encourage you to contact us immediately and we will do our best efforts to promptly remove such information from our records.</p>
  68. <h2>Online Privacy Policy Only</h2>
  69. <p>Our Privacy Policy applies only to our online activities and is valid for visitors to our website with regards to the information that they shared and/or collect in LISIC. This policy is not applicable to any information collected offline or via channels other than this website.</p>
  70. <h2>Consent</h2>
  71. <p>By using our website, you hereby consent to our Privacy Policy and agree to its terms.</p>
  72. <!-- eslint-enable -->
  73. </v-card-text>
  74. <v-btn color="primary" @click="setGdprValidated">I consent to this privacy policy</v-btn>
  75. </v-layout>
  76. </v-container>
  77. </v-card>
  78. </v-flex>
  79. </v-layout>
  80. </template>
  81. <script>
  82. import { mapActions } from 'vuex'
  83. export default {
  84. name: 'GdprNotice',
  85. data() {
  86. return {
  87. collectedHeaders: [
  88. {
  89. text: 'Collected data',
  90. align: 'left',
  91. sortable: false,
  92. value: 'data'
  93. },
  94. { text: 'Usage',
  95. sortable: false,
  96. align: 'left',
  97. value: 'usage'
  98. }
  99. ],
  100. collected: [ /* eslint-disable */
  101. {
  102. data: `IP address`,
  103. usage: `We make demographic statistics on who is doing the experiments`
  104. },
  105. {
  106. data: `Unique and anomymous identifier`,
  107. usage: `When using the app, you are identified by a unique and anonymous identifier.<br>
  108. This helps us differentiate users when analyzing the collected data.`
  109. },
  110. {
  111. data: `Experiments data`,
  112. usage: `When doing an experiment, a lot of data is collected. This may include the following:
  113. <ul>
  114. <li>Exact timestamp of the experiment start</li>
  115. <li>Clicks positions on the page</li>
  116. <li>Page elements that were selected</li>
  117. <li>Exact timestamp of the click</li>
  118. <li>Exact timestamp of the experiment validation</li>
  119. <li>List of validated experiments, with its progression through the list of available scenes</li>
  120. </ul>`
  121. }
  122. ] /* eslint-enable */
  123. }
  124. },
  125. methods: {
  126. ...mapActions(['setGdprValidated'])
  127. }
  128. }
  129. </script>