66 lines
1.7 KiB
HTML
66 lines
1.7 KiB
HTML
{% extends "newbase.html" %}
|
|
{% load static %}
|
|
{% load rowerfilters %}
|
|
|
|
{% block title %}GDPR Opt-In{% endblock %}
|
|
|
|
{% block main %}
|
|
<p>
|
|
We know you are eager to start using rowsandall.com, but we must
|
|
ask you to read and agree with the below first. At the bottom of this page,
|
|
you can opt in or delete this user account.
|
|
</p>
|
|
|
|
<h2>Data Consent</h2>
|
|
<p>
|
|
<b>
|
|
To comply with the European Union General Data Protection Regulation,
|
|
we need to record your consent to use personal data on this website.
|
|
Please take some time to review our data policies. If you agree and
|
|
opt in, click the "opt in" button at the bottom to be taken to the site.
|
|
If you do not agree, please use the button at the end fo the page to delete your
|
|
account. This will irreversibly delete all your data on rowsandall.com
|
|
and remove your account.
|
|
</b>
|
|
</p>
|
|
|
|
<p>
|
|
<a class="button green" href="/rowers/me/gdpr-optin-confirm/?next={{ next }}"><b>OPT IN AND CONTINUE</b></a>
|
|
</p>
|
|
|
|
|
|
<hr>
|
|
|
|
{% include "privacypolicy.html" %}
|
|
|
|
<hr>
|
|
|
|
<p>
|
|
To start or continue using the site, please give your consent by clicking on the green Opt In button below.
|
|
</p>
|
|
|
|
|
|
|
|
<p>
|
|
<a class="button green" href="/rowers/me/gdpr-optin-confirm/?next={{ next }}"><b>OPT IN AND CONTINUE</b></a>
|
|
</p>
|
|
|
|
<p>
|
|
<form method="POST" action="/rowers/me/delete/" class="padding">
|
|
{% csrf_token %}
|
|
<input id="id_delete_user" type="hidden" name="delete_user" value="True">
|
|
<input class="button" type="submit" name="action" value="DELETE ACCOUNT">
|
|
|
|
</form>
|
|
</p>
|
|
|
|
<p>
|
|
<a href="/rowers/exportallworkouts/">Download your data</a>
|
|
</p>
|
|
|
|
{% endblock %}
|
|
|
|
{% block sidebar %}
|
|
{% include 'menu_profile.html' %}
|
|
{% endblock %}
|