Files
crm_ecosplay/templates/emails/revendeur_created.html.twig
Serreau Jovann 6fa970e60d refactor: rebrand project to CRM SITECONSEIL (SARL SITECONSEIL)
- Rename all references from E-Cosplay/Ecosplay to SITECONSEIL
- Update entity from Association to SARL SITECONSEIL (Siret: 418664058)
- Update address to 27 rue Le Serurier, 02100 Saint-Quentin
- Update emails: contact@siteconseil.fr, rgpd@siteconseil.fr
- Update hosting from GCP to OVHcloud (Roubaix, Gravelines, Strasbourg, Paris)
- Update legal pages: mentions legales, CGV, RGPD, conformite, hebergement, cookies, CGU
- Add tarifs page with tabs: Site Internet, E-Commerce, Nom de domaine, Esy-Mail, Esy-Mailer, Esy-Tchat, Esy-Meet, Esy-Defender
- Add Discord webhook notification workflow
- Disable deploy and sonarqube workflows
- Update OAuth Keycloak realm to master
- Update logo references to logo_facture.png
- Remove forced image sizing in Liip Imagine filters
- Update SonarQube project key and badge token
- Update tribunal competent to Saint-Quentin
- Move tarif tabs JS to app.js (CSP compliance)

Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
2026-04-02 18:48:25 +02:00

61 lines
4.4 KiB
Twig

{% extends 'email/base.html.twig' %}
{% block title %}Bienvenue chez SITECONSEIL - Espace Revendeur{% endblock %}
{% block content %}
<h1 style="font-size: 20px; font-weight: bold; text-transform: uppercase; margin: 0 0 16px 0;">Bienvenue {{ firstName }} !</h1>
<p style="font-size: 14px; line-height: 1.6; margin: 0 0 16px 0;">Nous avons le plaisir de vous informer que votre compte <strong>revendeur</strong> a ete cree sur le CRM SITECONSEIL.</p>
<div style="background: #111827; color: #fff; padding: 20px; margin: 20px 0;">
<p style="font-size: 11px; text-transform: uppercase; letter-spacing: 1px; margin: 0 0 12px; opacity: 0.7;">Votre code revendeur</p>
<p style="font-size: 28px; font-weight: 900; color: #fabf04; text-align: center; font-family: monospace; letter-spacing: 4px; margin: 0;">{{ codeRevendeur }}</p>
</div>
<p style="font-size: 14px; line-height: 1.6; margin: 0 0 8px; font-weight: bold;">Pour acceder a votre espace, suivez ces etapes :</p>
<div style="width: 100%; margin: 16px 0;">
<div style="padding: 12px 16px; border-left: 4px solid #fabf04; background: #f9fafb;">
<p style="font-size: 12px; font-weight: 900; text-transform: uppercase; color: #fabf04; margin: 0 0 4px;">Etape 1</p>
<p style="font-size: 14px; margin: 0; line-height: 1.6;">Cliquez sur le bouton ci-dessous pour <strong>definir votre mot de passe</strong>. Ce lien est a usage unique.</p>
</div>
<div style="height: 8px;"></div>
<div style="padding: 12px 16px; border-left: 4px solid #fabf04; background: #f9fafb;">
<p style="font-size: 12px; font-weight: 900; text-transform: uppercase; color: #fabf04; margin: 0 0 4px;">Etape 2</p>
<p style="font-size: 14px; margin: 0; line-height: 1.6;">Une fois votre mot de passe defini, rendez-vous sur la page de connexion et identifiez-vous avec votre email <strong>{{ email }}</strong> et votre nouveau mot de passe.</p>
</div>
<div style="height: 8px;"></div>
<div style="padding: 12px 16px; border-left: 4px solid #fabf04; background: #f9fafb;">
<p style="font-size: 12px; font-weight: 900; text-transform: uppercase; color: #fabf04; margin: 0 0 4px;">Etape 3</p>
<p style="font-size: 14px; margin: 0; line-height: 1.6;">Vous accederez a votre <strong>Espace Revendeur</strong> ou vous pourrez gerer vos ventes, commandes et factures.</p>
</div>
</div>
<div style="margin: 24px 0; text-align: center;">
<a href="{{ setPasswordUrl }}" style="display: inline-block; background: #fabf04; border: 2px solid #111827; padding: 14px 24px; color: #111827; font-weight: 900; text-transform: uppercase; font-size: 14px; text-decoration: none; letter-spacing: 1px;">Definir mon mot de passe</a>
</div>
<div style="margin: 0 0 24px; text-align: center;">
<a href="{{ url('app_home') }}" style="display: inline-block; background: #fff; border: 2px solid #111827; padding: 12px 24px; color: #111827; font-weight: 900; text-transform: uppercase; font-size: 12px; text-decoration: none; letter-spacing: 1px;">Acceder a la page de connexion</a>
</div>
<div style="background: #f9fafb; padding: 16px; border: 1px solid #e5e7eb; margin: 16px 0;">
<p style="font-size: 12px; font-weight: bold; margin: 0 0 8px;">Informations de votre compte :</p>
<div style="font-size: 12px;">
<div style="padding: 2px 0;">
<span style="color: #666; display: inline-block; width: 120px;">Code revendeur</span>
<span style="font-weight: bold; font-family: monospace;">{{ codeRevendeur }}</span>
</div>
<div style="padding: 2px 0;">
<span style="color: #666; display: inline-block; width: 120px;">Email</span>
<span style="font-weight: bold;">{{ email }}</span>
</div>
<div style="padding: 2px 0;">
<span style="color: #666; display: inline-block; width: 120px;">Nom</span>
<span style="font-weight: bold;">{{ firstName }} {{ lastName }}</span>
</div>
</div>
</div>
<p style="font-size: 12px; color: #999; margin: 16px 0 0;">Pour toute question, contactez-nous a <a href="mailto:contact@siteconseil.fr" style="color: #4338ca;">contact@siteconseil.fr</a>. Conservez precieusement votre code revendeur {{ codeRevendeur }}.</p>
{% endblock %}