From d7f45a1cd8ae9ed7c9878011dde3f7e538179490 Mon Sep 17 00:00:00 2001 From: Carl Date: Sun, 29 Dec 2024 20:11:37 +0000 Subject: [PATCH 1/4] Add privacy policy --- src/lib/Footer.svelte | 31 +++++++--- src/routes/privacy-policy/+page.svelte | 84 ++++++++++++++++++++++++++ 2 files changed, 108 insertions(+), 7 deletions(-) create mode 100644 src/routes/privacy-policy/+page.svelte diff --git a/src/lib/Footer.svelte b/src/lib/Footer.svelte index b571be3..b06cc03 100644 --- a/src/lib/Footer.svelte +++ b/src/lib/Footer.svelte @@ -15,12 +15,17 @@ {/if} @@ -28,7 +33,19 @@ .footer { padding: 30px; display: flex; - justify-content: flex-end; + justify-content: space-between; + align-items: center; + gap: 30px; + } + + .footer-left { + display: flex; + align-items: center; + gap: 10px; + } + + .footer-right { + display: flex; gap: 30px; } diff --git a/src/routes/privacy-policy/+page.svelte b/src/routes/privacy-policy/+page.svelte new file mode 100644 index 0000000..ddb37d7 --- /dev/null +++ b/src/routes/privacy-policy/+page.svelte @@ -0,0 +1,84 @@ + + +
+
+

Privacy Policy

+

+ This privacy notice tells you what to expect us to do with your personal information. +

+ + + +

Contact details

+

Email: management@dddsouthwest.com

+ +

What information we collect, use, and why

+

We collect or use the following personal information to provide updates and share news:

+
    +
  • Names
  • +
  • Email address
  • +
+ +

Lawful bases and data protection rights

+

+ Under UK data protection law, we must have a “lawful basis” for collecting and using your + personal information. There is a list of possible lawful bases in the UK GDPR. You can find + out more about lawful bases on the ICO’s website. +

+

+ To make a data protection rights request, please contact us using the contact details at the + top of this privacy notice. +

+ +

Our lawful bases

+

+ Our lawful basis for collecting or using personal information to provide updates and share + news is your consent by signing up to a newsletter, or submitting a session for + consideration. You have the right to withdraw your consent at any time. +

+ +

Where we get personal information from

+

+ We collect information directly from you - either through speaker submission on sessionize, or + through newsletter signup. +

+ +

How long we keep information

+

+ Our primary use for your personal information is for our newsletter which is sent out for + informational purposes. Until you unsubscribe or request deletion, we will keep your personal + information. +

+ +

How to complain

+

+ If you have any concerns about our use of your personal data, you can make a complaint to us + using the contact details at the top of this privacy notice. If you remain unhappy with how + we’ve used your data after raising a complaint with us, you can also complain to the ICO. +

+
+ The ICO’s address:

+ + Information Commissioner’s Office
+ Wycliffe House
+ Water Lane
+ Wilmslow
+ Cheshire
+ SK9 5AF
+ Helpline number: 0303 123 1113
+ Website: ICO Complaints +
+ +

Last updated: 29 December 2024

+
+
From 63b5ad6ec7f75971b0fc3a4b3fe63f6ba27bf2ac Mon Sep 17 00:00:00 2001 From: Carl Date: Sun, 29 Dec 2024 20:42:05 +0000 Subject: [PATCH 2/4] Nav links, accessibility fix --- src/lib/Footer.svelte | 4 ++++ src/lib/Navbar.svelte | 1 + 2 files changed, 5 insertions(+) diff --git a/src/lib/Footer.svelte b/src/lib/Footer.svelte index b06cc03..bf7b522 100644 --- a/src/lib/Footer.svelte +++ b/src/lib/Footer.svelte @@ -38,6 +38,10 @@ gap: 30px; } + .footer a { + color: black; + } + .footer-left { display: flex; align-items: center; diff --git a/src/lib/Navbar.svelte b/src/lib/Navbar.svelte index 6415ab9..035180c 100644 --- a/src/lib/Navbar.svelte +++ b/src/lib/Navbar.svelte @@ -18,6 +18,7 @@ { text: 'Sessions', href: '/sessions', hidden: true }, { text: 'Schedule', href: '/schedule', hidden: true }, { text: 'Pocket DDD', href: 'https://pocket2025.dddsouthwest.com/', hidden: true }, + { text: 'Privacy Policy', href: '/privacy-policy', hidden: false }, { text: 'Code of Conduct', href: '/code-of-conduct', hidden: false } ]; From a9e054525ff8b1300a77f322f2756482711e2bab Mon Sep 17 00:00:00 2001 From: Carl Sargunar Date: Mon, 30 Dec 2024 22:17:23 +0000 Subject: [PATCH 3/4] Feedback --- src/routes/privacy-policy/+page.svelte | 21 +++++++++++++++++---- 1 file changed, 17 insertions(+), 4 deletions(-) diff --git a/src/routes/privacy-policy/+page.svelte b/src/routes/privacy-policy/+page.svelte index ddb37d7..f65ef31 100644 --- a/src/routes/privacy-policy/+page.svelte +++ b/src/routes/privacy-policy/+page.svelte @@ -7,7 +7,9 @@

Privacy Policy

- This privacy notice tells you what to expect us to do with your personal information. + This privacy notice tells you what to expect us to do with your personal information. We only + hold this information to support our events and for our newsletter. We do not sell, not do or + share your information with third parties.

    @@ -29,6 +31,16 @@
  • Email address
+

+ We addditionally collected the following information for anonymised metrics, to support and + for reporting on our community. +

+
    +
  • Gender
  • +
  • Accessibility Needs
  • +
  • Dietary Needs
  • +
+

Lawful bases and data protection rights

Under UK data protection law, we must have a “lawful basis” for collecting and using your @@ -40,7 +52,7 @@ top of this privacy notice.

-

Our lawful bases

+

Our lawful bases

Our lawful basis for collecting or using personal information to provide updates and share news is your consent by signing up to a newsletter, or submitting a session for @@ -62,8 +74,9 @@

How to complain

- If you have any concerns about our use of your personal data, you can make a complaint to us - using the contact details at the top of this privacy notice. If you remain unhappy with how + If you have any concerns about our use of your personal data please get in touch with the + email address at the top of this page. If you are still unhappy, you can make a complaint to + us using the contact details at the top of this privacy notice. If you remain unhappy with how we’ve used your data after raising a complaint with us, you can also complain to the ICO.

From 12de61f41d3be588fcf57357a1f33ce493a2df8b Mon Sep 17 00:00:00 2001 From: Carl Date: Mon, 30 Dec 2024 22:23:34 +0000 Subject: [PATCH 4/4] Update src/routes/privacy-policy/+page.svelte Co-authored-by: Sara Gowen <9001998+dynamictulip@users.noreply.github.com> --- src/routes/privacy-policy/+page.svelte | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/routes/privacy-policy/+page.svelte b/src/routes/privacy-policy/+page.svelte index f65ef31..d13528d 100644 --- a/src/routes/privacy-policy/+page.svelte +++ b/src/routes/privacy-policy/+page.svelte @@ -8,7 +8,7 @@

Privacy Policy

This privacy notice tells you what to expect us to do with your personal information. We only - hold this information to support our events and for our newsletter. We do not sell, not do or + hold this information to support our events and for our newsletter. We do not sell or share your information with third parties.