From b34379b34e96167330963f08995b44c493d6f8ca Mon Sep 17 00:00:00 2001 From: Kumi Date: Sat, 16 Nov 2024 21:18:16 +0100 Subject: [PATCH] feat: Adds privacy notice to email verification form Informs users about data processing related to email and IP address storage during registration. Enhances transparency by detailing privacy practices before form submission, aligning with data protection regulations. --- .../registration/templates/registration/email_form.html | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/src/synapse_registration/registration/templates/registration/email_form.html b/src/synapse_registration/registration/templates/registration/email_form.html index fcb391e..26b32bb 100644 --- a/src/synapse_registration/registration/templates/registration/email_form.html +++ b/src/synapse_registration/registration/templates/registration/email_form.html @@ -11,6 +11,11 @@
{{ form.email }}

{{ form.email.errors }}

+ +

We will send you an email with a link to verify your email address.

+

+ By clicking the button below, you agree that we store your email address and the IP address of the device you are using to send this request for processing your registration. +

{% endblock content %}