- Add for/id attributes to all form labels for accessibility compliance - Add <title> tags to PDF templates (rgpd_access, rgpd_no_data, rgpd_deletion, contrat_revendeur) - Add role="presentation" to email layout tables - Remove deprecated cellpadding/cellspacing attributes from all templates - Fix PHPUnit notices by replacing createMock with createStub where no expectations are set Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
26 lines
1.6 KiB
Twig
26 lines
1.6 KiB
Twig
{% extends 'email/base.html.twig' %}
|
|
|
|
{% block title %}Attestation RGPD signee{% endblock %}
|
|
|
|
{% block content %}
|
|
<h1 style="font-size: 20px; font-weight: bold; text-transform: uppercase; margin: 0 0 16px 0;">Attestation RGPD signee</h1>
|
|
<p style="font-size: 14px; line-height: 1.6; margin: 0 0 16px 0;">Bonjour,</p>
|
|
<p style="font-size: 14px; line-height: 1.6; margin: 0 0 16px 0;">Suite a votre demande, vous trouverez en piece jointe votre <strong>attestation d'{{ typeName }}</strong>, signee electroniquement par l'association E-Cosplay.</p>
|
|
<table style="margin: 16px 0; font-size: 13px; width: 100%;">
|
|
<tr>
|
|
<td style="padding: 8px 12px; background: #f9fafb; border-left: 3px solid #fabf04; font-weight: bold;">Reference</td>
|
|
<td style="padding: 8px 12px; background: #f9fafb;">{{ attestation.reference }}</td>
|
|
</tr>
|
|
<tr>
|
|
<td style="padding: 8px 12px; border-left: 3px solid #fabf04; font-weight: bold;">Date</td>
|
|
<td style="padding: 8px 12px;">{{ attestation.createdAt|date('d/m/Y a H:i') }}</td>
|
|
</tr>
|
|
<tr>
|
|
<td style="padding: 8px 12px; background: #f9fafb; border-left: 3px solid #fabf04; font-weight: bold;">Type</td>
|
|
<td style="padding: 8px 12px; background: #f9fafb;">{{ typeName|capitalize }}</td>
|
|
</tr>
|
|
</table>
|
|
<p style="font-size: 14px; line-height: 1.6; margin: 0 0 16px 0;">Le certificat de signature electronique est egalement joint a cet email.</p>
|
|
<p style="font-size: 14px; line-height: 1.6; margin: 0;">Cordialement,<br><strong>Association E-Cosplay</strong></p>
|
|
{% endblock %}
|