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.
This commit is contained in:
Kumi 2024-11-16 21:18:16 +01:00
parent 7c4022e764
commit b34379b34e
Signed by: kumi
GPG key ID: ECBCC9082395383F

View file

@ -11,6 +11,11 @@
<div class="control">{{ form.email }}</div> <div class="control">{{ form.email }}</div>
<p class="help is-danger">{{ form.email.errors }}</p> <p class="help is-danger">{{ form.email.errors }}</p>
</div> </div>
<!-- Privacy notice -->
<p class="help">We will send you an email with a link to verify your email address.</p>
<p class="help">
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.
</p>
<button type="submit" class="button is-link">Verify Email</button> <button type="submit" class="button is-link">Verify Email</button>
</form> </form>
{% endblock content %} {% endblock content %}