|
-
- const Page = () => {
-
- const content = `
- <style>
- 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; }
- </style>
- <div class="tnc">
- <strong class="tnc"
- ><h2><center>Privacy Policy</center></h2></strong
- >
- <ol>
- <li class="tnc">
- The personal data provided by the applicant in this website would be
- used for application of public notice publication and for assumption
- of liability.
- </li>
- <li class="tnc">
- The protection of personal data privacy is the concern of every member
- of Government Logistics Department. We respect personal data privacy
- and are committed to fully implementing and complying with the data
- protection principles and all relevant provisions of the Personal Data
- (Privacy) Ordinance. We develop and implement programme controls that
- give effect to the six data protection principles below –
- <ol type="a">
- <li class="tnc">
- collect adequate, but not excessive, personal data by lawful and
- fair means only for lawful purposes related to our functions or
- activities;
- </li>
- <li class="tnc">
- take all reasonably practicable steps to ensure that the personal
- data collected or retained are accurate, having regard to the
- purposes for which they are to be used. Erase personal data no
- longer than necessary for the purposes for which they are to be
- used;
- </li>
- <li class="tnc">
- use the personal data collected only for purposes or directly
- related purposes for which the data were to be used at the time of
- collection, unless the individual concerned has given express
- consent for a change of use or such use is permitted by law;
- </li>
- <li class="tnc">
- take all reasonably practicable steps to ensure that personal data
- are protected against unauthorized or accidental access,
- processing, erasure or other use;
- </li>
- <li class="tnc">
- take all reasonably practicable steps to ensure that a person can
- be informed of the kinds of personal data that GLD holds and the
- purposes for which the data are to be used; and
- </li>
- <li class="tnc">
- permit persons to access and correct personal data of which they
- are the data subject and process any access/correction requests in
- a manner permitted or required by law.
- </li>
- </ol>
- </li>
- <li class="tnc">
- Requests for access to or correction of personal data held by us
- should be addressed to – <br /><br />
- Data Protection Officer<br />
- Government Logistics Department<br />
- 10/F, North Point Government Offices <br />
- 333 Java Road North Point<br />
- Hong Kong<br />
- <br />
- (Note: Data access requests should be made on a form [link -
- https://www.gld.gov.hk/assets/gld/download-files/privacy-policy/privacy_form_e.pdf]
- specified by the Privacy Commissioner for Personal Data.)
- </li>
- </ol>
- </div>
- `
- ;
-
- return (<div style={{ padding: 12 }} dangerouslySetInnerHTML={{ __html: content }} />);
-
- }
-
- export default Page;
|