From 797d04c40342516493c85fa163f63b009995cc2f Mon Sep 17 00:00:00 2001 From: Josh Creek Date: Sat, 8 Oct 2022 16:20:46 +0100 Subject: [PATCH] feat(*): Add privacy policy --- src/privacy.html | 115 ++++++++++++++++++++++++++++++++++++++++++++++ webpack.common.js | 6 +++ 2 files changed, 121 insertions(+) create mode 100644 src/privacy.html diff --git a/src/privacy.html b/src/privacy.html new file mode 100644 index 0000000..ec20e79 --- /dev/null +++ b/src/privacy.html @@ -0,0 +1,115 @@ + + + + + + + + + + + + <%= htmlWebpackPlugin.options.title %> + + + + + + + + +
+ +

+ +

+
+ +
+

Privacy Policy

+

This Website stores none of your information remotely. The only information stored locally is a saved list of your input names, on your own device.

+

What data do we collect?

+

None.

+

How do we collect your data?

+

I don't.

+

How will we use your data?

+

I won't.

+

How do we store your data?

+

I don't.

+

Marketing

+

I don't market anything to you.

+

What are your data protection rights?

+

I would like to make sure you are fully aware of all of your data protection rights. Every user is entitled to + the following:

+ +

If you make a request, I have one month to respond to you. If you would like to exercise any of these rights, + please contact me via Twitter.

+

What are cookies?

+

Cookies are text files placed on your computer to collect standard Internet log information and visitor behavior + information. When you visit our websites, we may collect information from you automatically through cookies or + similar technology

+

For further information, visit allaboutcookies.org.

+

How do we use cookies?

+

I don't.

+

What types of cookies do we use?

+

None.

+

How to manage your cookies

+

You can set your browser not to accept cookies, and the above website tells you how to remove cookies from your + browser. However, in a few cases, some of our website features may not function as a result.

+

Privacy policies of other websites +

This website contains links to other websites. My privacy policy applies only to this website, so if you click on + a link to another website, you should read their privacy policy.

+

Changes to our privacy policy +

I keep my privacy policy under regular review and places any updates on this web page. This privacy policy was + last updated on 8th October 2022.

+

How to contact us

+

If you have any questions about this privacy policy, the data I hold on you, or you would like to exercise one of + your data protection rights, please do not hesitate to contact me via Twitter.

+

How to contact the appropriate authorities

+

Should you wish to report a complaint or if you feel that I have not addressed your concern in a satisfactory + manner, you may contact the Information Commissioner's Office.

+
+ + + + + \ No newline at end of file diff --git a/webpack.common.js b/webpack.common.js index 653ebb9..c964080 100644 --- a/webpack.common.js +++ b/webpack.common.js @@ -86,6 +86,12 @@ module.exports = { filename: 'index.html', template: 'src/template.html', }), + new HtmlWebpackPlugin({ + inject: 'body', + title: 'Selection Wheel - the funnest way to make decisions', + filename: 'privacy-policy.html', + template: 'src/privacy.html', + }), new InlineChunkHtmlPlugin(HtmlWebpackPlugin, [/.*/]), new WebpackManifestPlugin(options), ],