{% extends "layouts/base.html" %}
{% block title %}User Rights Request{% endblock %}
{% block head %}
{{ super() }}
<link rel="stylesheet" href="/static/css/components/content_pages.css">
{% endblock %}
{% block content %}
<main>
<section class="content-section">
<h1>User Rights Request</h1>
<p>Under the General Data Protection Regulation (GDPR), you have several rights regarding your personal data. You can exercise these rights by submitting a request below.</p>
<h2>Your Rights Under GDPR</h2>
<ul>
<li><strong>Right to Access:</strong> You can request a copy of all personal data we hold about you.</li>
<li><strong>Right to Rectification:</strong> You can request that we correct any inaccurate or incomplete personal data.</li>
<li><strong>Right to Erasure:</strong> You can request that we delete your personal data under certain circumstances.</li>
<li><strong>Right to Data Portability:</strong> You can request a copy of your data in a machine-readable format.</li>
<li><strong>Right to Object:</strong> You can object to certain types of processing of your personal data.</li>
<li><strong>Right to Restrict Processing:</strong> You can request that we limit the processing of your personal data.</li>
</ul>
<h2>Request Data Access</h2>
<p>Request a download of all your personal data that we store.</p>
<form action="/user_rights/access" method="post">
<div class="form-group">
<label for="email">Your Email Address</label>
<input type="email" id="email" name="email" class="form-input" required>
</div>
<div class="form-group">
<label for="message">Additional Information (Optional)</label>
<textarea id="message" name="message" class="form-input" rows="4"></textarea>
</div>
<button type="submit" class="btn-primary">Request Data Access</button>
</form>
<h2>Request Data Deletion</h2>
<p>Request the permanent deletion of your account and all associated data.</p>
<form action="/user_rights/delete" method="post">
<div class="form-group">
<label for="email_delete">Your Email Address</label>
<input type="email" id="email_delete" name="email" class="form-input" required>
</div>
<div class="form-group">
<label for="reason">Reason for Deletion (Optional)</label>
<textarea id="reason" name="reason" class="form-input" rows="4"></textarea>
</div>
<div class="form-group">
<label>
<input type="checkbox" name="confirm" required>
I understand that this action is permanent and all my data will be deleted.
</label>
</div>
<button type="submit" class="btn-danger">Request Data Deletion</button>
</form>
<h2>Request Data Correction</h2>
<p>Request correction of inaccurate or incomplete personal data.</p>
<form action="/user_rights/correct" method="post">
<div class="form-group">
<label for="email_correct">Your Email Address</label>
<input type="email" id="email_correct" name="email" class="form-input" required>
</div>
<div class="form-group">
<label for="correction_details">What needs to be corrected?</label>
<textarea id="correction_details" name="correction_details" class="form-input" rows="4" required></textarea>
</div>
<button type="submit" class="btn-primary">Request Data Correction</button>
</form>
<h2>Response Time</h2>
<p>We will respond to your request within 30 days of receipt. If we need additional time, we will notify you and provide a reason for the delay.</p>
<h2>Contact for Privacy Concerns</h2>
<p>If you have any questions about your rights or how we process your data, please contact us at: <a href="mailto:privacy@retoors.nl">privacy@retoors.nl</a></p>
<h2>File a Complaint</h2>
<p>If you believe your data protection rights have been violated, you have the right to lodge a complaint with the Dutch Data Protection Authority (Autoriteit Persoonsgegevens):</p>
<p>
<strong>Autoriteit Persoonsgegevens</strong><br>
Postbus 93374<br>
2509 AJ Den Haag<br>
The Netherlands<br>
Website: <a href="https://autoriteitpersoonsgegevens.nl" target="_blank">https://autoriteitpersoonsgegevens.nl</a>
</p>
</section>
</main>
{% endblock %}