- Send confirmation email when no data found for access or deletion request - Add DPO contact (DPO-167945, E-Cosplay) to both access and deletion PDFs Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
43 lines
1.9 KiB
Twig
43 lines
1.9 KiB
Twig
<!DOCTYPE html>
|
|
<html lang="fr">
|
|
<head><meta charset="UTF-8"><style>
|
|
body { font-family: DejaVu Sans, sans-serif; font-size: 12px; color: #111; }
|
|
h1 { font-size: 20px; text-align: center; margin-bottom: 30px; }
|
|
.content { max-width: 500px; margin: 0 auto; }
|
|
.logo { width: 80px; display: block; margin: 0 auto 20px; }
|
|
.box { border: 2px solid #111; padding: 20px; margin: 20px 0; }
|
|
.signature { margin-top: 40px; font-size: 11px; color: #666; }
|
|
</style></head>
|
|
<body>
|
|
<div class="content">
|
|
{% if logo %}<img src="{{ logo }}" class="logo" alt="Logo">{% endif %}
|
|
|
|
<h1>Attestation de suppression de donnees</h1>
|
|
|
|
<div class="box">
|
|
<p>Conformement a votre demande et en application de l'<strong>article 17 du Reglement General sur la Protection des Donnees (RGPD)</strong>, nous attestons que :</p>
|
|
|
|
<p style="margin: 15px 0;">Les donnees personnelles associees a l'adresse IP <strong>{{ ip }}</strong> ont ete <strong>supprimees</strong> de nos systemes le <strong>{{ date|date('d/m/Y a H:i') }}</strong>.</p>
|
|
|
|
<p>Cette suppression concerne l'ensemble des donnees de navigation collectees par notre systeme d'analyse d'audience, incluant :</p>
|
|
<ul style="margin: 10px 0; padding-left: 20px;">
|
|
<li>Identifiants de session</li>
|
|
<li>Pages visitees</li>
|
|
<li>Donnees techniques (appareil, navigateur, systeme d'exploitation)</li>
|
|
<li>Liens eventuels avec un compte utilisateur</li>
|
|
</ul>
|
|
</div>
|
|
|
|
<div class="signature">
|
|
<p><strong>Association E-Cosplay</strong></p>
|
|
<p>SIREN : 943121517 / RNA : W022006988</p>
|
|
<p>42 rue de Saint-Quentin, 02800 Beautor, France</p>
|
|
<p>contact@e-cosplay.fr</p>
|
|
<p style="margin-top: 10px;"><strong>Delegue a la Protection des Donnees (DPO)</strong></p>
|
|
<p>Identifiant : DPO-167945 — Contact : contact@e-cosplay.fr</p>
|
|
<p style="margin-top: 10px;">Document genere automatiquement — Reference : RGPD-DEL-{{ date|date('YmdHis') }}</p>
|
|
</div>
|
|
</div>
|
|
</body>
|
|
</html>
|