您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符
 
 

83 行
3.1 KiB

  1. const Page = () => {
  2. const content = `
  3. <style>
  4. td.tnc { min-width: 24px; vertical-align: text-top; } div.tnc { text-align: justify; text-justify: inter-word; font-style: normal; } strong.tnc { font-size: large; } li.tnc { margin: 10px 0; }
  5. </style>
  6. <div class="tnc">
  7. <strong class="tnc"
  8. ><h2><center>Privacy Policy</center></h2></strong
  9. >
  10. <ol>
  11. <li class="tnc">
  12. The personal data provided by the applicant in this website would be
  13. used for application of public notice publication and for assumption
  14. of liability.
  15. </li>
  16. <li class="tnc">
  17. The protection of personal data privacy is the concern of every member
  18. of Government Logistics Department. We respect personal data privacy
  19. and are committed to fully implementing and complying with the data
  20. protection principles and all relevant provisions of the Personal Data
  21. (Privacy) Ordinance. We develop and implement programme controls that
  22. give effect to the six data protection principles below –
  23. <ol type="a">
  24. <li class="tnc">
  25. collect adequate, but not excessive, personal data by lawful and
  26. fair means only for lawful purposes related to our functions or
  27. activities;
  28. </li>
  29. <li class="tnc">
  30. take all reasonably practicable steps to ensure that the personal
  31. data collected or retained are accurate, having regard to the
  32. purposes for which they are to be used. Erase personal data no
  33. longer than necessary for the purposes for which they are to be
  34. used;
  35. </li>
  36. <li class="tnc">
  37. use the personal data collected only for purposes or directly
  38. related purposes for which the data were to be used at the time of
  39. collection, unless the individual concerned has given express
  40. consent for a change of use or such use is permitted by law;
  41. </li>
  42. <li class="tnc">
  43. take all reasonably practicable steps to ensure that personal data
  44. are protected against unauthorized or accidental access,
  45. processing, erasure or other use;
  46. </li>
  47. <li class="tnc">
  48. take all reasonably practicable steps to ensure that a person can
  49. be informed of the kinds of personal data that GLD holds and the
  50. purposes for which the data are to be used; and
  51. </li>
  52. <li class="tnc">
  53. permit persons to access and correct personal data of which they
  54. are the data subject and process any access/correction requests in
  55. a manner permitted or required by law.
  56. </li>
  57. </ol>
  58. </li>
  59. <li class="tnc">
  60. Requests for access to or correction of personal data held by us
  61. should be addressed to – <br /><br />
  62. Data Protection Officer<br />
  63. Government Logistics Department<br />
  64. 10/F, North Point Government Offices <br />
  65. 333 Java Road North Point<br />
  66. Hong Kong<br />
  67. <br />
  68. (Note: Data access requests should be made on a form [link -
  69. https://www.gld.gov.hk/assets/gld/download-files/privacy-policy/privacy_form_e.pdf]
  70. specified by the Privacy Commissioner for Personal Data.)
  71. </li>
  72. </ol>
  73. </div>
  74. `
  75. ;
  76. return (<div style={{ padding: 12 }} dangerouslySetInnerHTML={{ __html: content }} />);
  77. }
  78. export default Page;