fix: remplacement emails - contact@ devient client@, monitor@ devient notification@

- contact@e-cosplay.fr remplace par client@e-cosplay.fr dans 87 fichiers
  (PDFs, templates, emails, controllers, DocuSeal submitters)
- monitor@e-cosplay.fr remplace par notification@e-cosplay.fr dans 4 fichiers
  (webhooks DocuSeal, commandes DNS/NDD, controller echeancier)
- Ajout lien "En savoir plus sur notre association" vers www.e-cosplay.fr
  sur la page migration SITECONSEIL

Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
This commit is contained in:
Serreau Jovann
2026-04-09 15:11:08 +02:00
parent d11837941f
commit 0e1f249cc3
91 changed files with 118 additions and 112 deletions

View File

@@ -22,7 +22,7 @@ use Twig\Environment;
)] )]
class CheckDnsCommand extends Command class CheckDnsCommand extends Command
{ {
private const MONITOR_EMAIL = 'monitor@e-cosplay.fr'; private const MONITOR_EMAIL = 'notification@e-cosplay.fr';
public function __construct( public function __construct(
private DnsCheckService $dnsCheck, private DnsCheckService $dnsCheck,

View File

@@ -20,7 +20,7 @@ use Twig\Environment;
class CheckNddCommand extends Command class CheckNddCommand extends Command
{ {
private const EXPIRATION_THRESHOLD_DAYS = 30; private const EXPIRATION_THRESHOLD_DAYS = 30;
private const MONITOR_EMAIL = 'monitor@e-cosplay.fr'; private const MONITOR_EMAIL = 'notification@e-cosplay.fr';
public function __construct( public function __construct(
private EntityManagerInterface $em, private EntityManagerInterface $em,

View File

@@ -83,7 +83,7 @@ class TestMailCommand extends Command
$directMailer = new Mailer($transport); $directMailer = new Mailer($transport);
$email = (new Email()) $email = (new Email())
->from('Association E-Cosplay <contact@e-cosplay.fr>') ->from('Association E-Cosplay <client@e-cosplay.fr>')
->to($to) ->to($to)
->subject($subject) ->subject($subject)
->html($html); ->html($html);

View File

@@ -137,7 +137,7 @@ class AttestationCustomController extends AbstractController
'file' => 'data:application/pdf;base64,'.$pdfBase64, 'file' => 'data:application/pdf;base64,'.$pdfBase64,
]], ]],
'submitters' => [[ 'submitters' => [[
'email' => 'contact@e-cosplay.fr', 'email' => 'client@e-cosplay.fr',
'name' => 'Association E-Cosplay', 'name' => 'Association E-Cosplay',
'role' => 'First Party', 'role' => 'First Party',
'send_email' => false, 'send_email' => false,

View File

@@ -741,7 +741,7 @@ class ClientsController extends AbstractController
'file' => 'data:application/pdf;base64,'.$pdfBase64, 'file' => 'data:application/pdf;base64,'.$pdfBase64,
]], ]],
'submitters' => [[ 'submitters' => [[
'email' => 'contact@e-cosplay.fr', 'email' => 'client@e-cosplay.fr',
'name' => 'Association E-Cosplay', 'name' => 'Association E-Cosplay',
'role' => 'First Party', 'role' => 'First Party',
'completed' => true, 'completed' => true,
@@ -818,7 +818,7 @@ class ClientsController extends AbstractController
'file' => 'data:application/pdf;base64,'.$pdfBase64, 'file' => 'data:application/pdf;base64,'.$pdfBase64,
]], ]],
'submitters' => [[ 'submitters' => [[
'email' => 'contact@e-cosplay.fr', 'email' => 'client@e-cosplay.fr',
'name' => 'Association E-Cosplay', 'name' => 'Association E-Cosplay',
'role' => 'First Party', 'role' => 'First Party',
'completed' => true, 'completed' => true,
@@ -902,7 +902,7 @@ class ClientsController extends AbstractController
'file' => 'data:application/pdf;base64,'.$pdfBase64, 'file' => 'data:application/pdf;base64,'.$pdfBase64,
]], ]],
'submitters' => [[ 'submitters' => [[
'email' => 'contact@e-cosplay.fr', 'email' => 'client@e-cosplay.fr',
'name' => 'Association E-Cosplay', 'name' => 'Association E-Cosplay',
'role' => 'First Party', 'role' => 'First Party',
'completed' => true, 'completed' => true,

View File

@@ -143,7 +143,7 @@ class ContratController extends AbstractController
]], ]],
'submitters' => [ 'submitters' => [
[ [
'email' => 'contact@e-cosplay.fr', 'email' => 'client@e-cosplay.fr',
'name' => 'Association E-Cosplay', 'name' => 'Association E-Cosplay',
'role' => 'Company', 'role' => 'Company',
'completed' => true, 'completed' => true,

View File

@@ -171,7 +171,7 @@ class EFlexController extends AbstractController
]], ]],
'submitters' => [ 'submitters' => [
[ [
'email' => 'contact@e-cosplay.fr', 'email' => 'client@e-cosplay.fr',
'name' => 'Association E-Cosplay', 'name' => 'Association E-Cosplay',
'role' => 'Company', 'role' => 'Company',
'completed' => true, 'completed' => true,

View File

@@ -319,7 +319,7 @@ class EcheancierController extends AbstractController
], ],
'submitters' => [ 'submitters' => [
[ [
'email' => 'contact@e-cosplay.fr', 'email' => 'client@e-cosplay.fr',
'name' => 'Association E-Cosplay', 'name' => 'Association E-Cosplay',
'role' => 'Company', 'role' => 'Company',
'completed' => true, 'completed' => true,
@@ -424,7 +424,7 @@ class EcheancierController extends AbstractController
'file' => 'data:application/pdf;base64,'.$pdfBase64, 'file' => 'data:application/pdf;base64,'.$pdfBase64,
]], ]],
'submitters' => [[ 'submitters' => [[
'email' => 'contact@e-cosplay.fr', 'email' => 'client@e-cosplay.fr',
'name' => 'Association E-Cosplay', 'name' => 'Association E-Cosplay',
'role' => 'First Party', 'role' => 'First Party',
'completed' => true, 'completed' => true,

View File

@@ -242,7 +242,7 @@ class EcheancierProcessController extends AbstractController
// Notification email a l'admin // Notification email a l'admin
try { try {
$this->mailer->sendEmail( $this->mailer->sendEmail(
'monitor@e-cosplay.fr', 'notification@e-cosplay.fr',
'Echeancier '.$ref.' refuse par '.$customer->getFullName(), 'Echeancier '.$ref.' refuse par '.$customer->getFullName(),
$this->twig->render('emails/echeancier_refused_admin.html.twig', [ $this->twig->render('emails/echeancier_refused_admin.html.twig', [
'customer' => $customer, 'customer' => $customer,

View File

@@ -188,7 +188,7 @@ class LegalController extends AbstractController
: 'Aucune donnee trouvee pour cette adresse IP.'); : 'Aucune donnee trouvee pour cette adresse IP.');
} }
} catch (\Throwable) { } catch (\Throwable) {
$this->addFlash('error', 'Une erreur est survenue lors du traitement de votre demande. Veuillez reessayer ou nous contacter a contact@e-cosplay.fr.'); $this->addFlash('error', 'Une erreur est survenue lors du traitement de votre demande. Veuillez reessayer ou nous contacter a client@e-cosplay.fr.');
} }
return $this->redirect($this->generateUrl('app_legal_rgpd').self::RGPD_ANCHOR); return $this->redirect($this->generateUrl('app_legal_rgpd').self::RGPD_ANCHOR);

View File

@@ -23,7 +23,7 @@ use Twig\Environment;
class WebhookDocuSealController extends AbstractController class WebhookDocuSealController extends AbstractController
{ {
private const ATTESTATION_NOT_FOUND = 'Attestation not found'; private const ATTESTATION_NOT_FOUND = 'Attestation not found';
private const MONITOR_EMAIL = 'monitor@e-cosplay.fr'; private const MONITOR_EMAIL = 'notification@e-cosplay.fr';
#[Route('/webhooks/docuseal', name: 'app_webhook_docuseal', methods: ['POST'])] #[Route('/webhooks/docuseal', name: 'app_webhook_docuseal', methods: ['POST'])]
public function __invoke( public function __invoke(

View File

@@ -956,7 +956,7 @@ class WebhookStripeController extends AbstractController
'file' => 'data:application/pdf;base64,'.$pdfBase64, 'file' => 'data:application/pdf;base64,'.$pdfBase64,
]], ]],
'submitters' => [[ 'submitters' => [[
'email' => 'contact@e-cosplay.fr', 'email' => 'client@e-cosplay.fr',
'name' => 'Association E-Cosplay', 'name' => 'Association E-Cosplay',
'role' => 'First Party', 'role' => 'First Party',
'completed' => true, 'completed' => true,

View File

@@ -25,7 +25,7 @@ class TwoFactorCodeMailer implements AuthCodeMailerInterface
]); ]);
$email = (new Email()) $email = (new Email())
->from('CRM E-Cosplay <contact@e-cosplay.fr>') ->from('CRM E-Cosplay <client@e-cosplay.fr>')
->to($user->getEmailAuthRecipient()) ->to($user->getEmailAuthRecipient())
->subject('CRM E-Cosplay - Code de verification') ->subject('CRM E-Cosplay - Code de verification')
->html($html); ->html($html);

View File

@@ -57,7 +57,7 @@ class DocuSealService
], ],
'submitters' => [ 'submitters' => [
[ [
'email' => 'contact@e-cosplay.fr', 'email' => 'client@e-cosplay.fr',
'name' => 'Association E-Cosplay', 'name' => 'Association E-Cosplay',
'role' => self::ROLE_FIRST_PARTY, 'role' => self::ROLE_FIRST_PARTY,
'completed' => true, 'completed' => true,

View File

@@ -219,8 +219,8 @@ class MailerService
'FN:Association E-Cosplay', 'FN:Association E-Cosplay',
'ORG:Association E-Cosplay', 'ORG:Association E-Cosplay',
'TEL;TYPE=WORK,VOICE:+33679348802', 'TEL;TYPE=WORK,VOICE:+33679348802',
'EMAIL;TYPE=INTERNET,PREF:contact@e-cosplay.fr', 'EMAIL;TYPE=INTERNET,PREF:client@e-cosplay.fr',
'EMAIL;TYPE=INTERNET:contact@e-cosplay.fr', 'EMAIL;TYPE=INTERNET:client@e-cosplay.fr',
'ADR;TYPE=WORK:;;42 rue de Saint-Quentin;Beautor;;02800;France', 'ADR;TYPE=WORK:;;42 rue de Saint-Quentin;Beautor;;02800;France',
'URL:https://www.e-cosplay.fr', 'URL:https://www.e-cosplay.fr',
'URL:https://crm.e-cosplay.fr', 'URL:https://crm.e-cosplay.fr',

View File

@@ -281,7 +281,7 @@ class AdvertPdf extends Fpdi
$this->SetFont('Arial', '', 8); $this->SetFont('Arial', '', 8);
$this->SetTextColor(0, 0, 0); $this->SetTextColor(0, 0, 0);
$this->Cell(190, 4, $this->enc('42 rue de Saint-Quentin - 02800 BEAUTOR - Tél: 07 66 95 70 06'), 0, 1, 'C'); $this->Cell(190, 4, $this->enc('42 rue de Saint-Quentin - 02800 BEAUTOR - Tél: 07 66 95 70 06'), 0, 1, 'C');
$this->Cell(190, 4, $this->enc('e-mail : contact@e-cosplay.fr - www.e-cosplay.fr'), 0, 1, 'C'); $this->Cell(190, 4, $this->enc('e-mail : client@e-cosplay.fr - www.e-cosplay.fr'), 0, 1, 'C');
$this->Cell(190, 4, $this->enc('Association E-Cosplay - N°SIRET 943 121 517 00011 - CODE APE 9329Z - RNA W022006988'), 0, 1, 'C'); $this->Cell(190, 4, $this->enc('Association E-Cosplay - N°SIRET 943 121 517 00011 - CODE APE 9329Z - RNA W022006988'), 0, 1, 'C');
$this->SetFont('Arial', 'I', 7); $this->SetFont('Arial', 'I', 7);

View File

@@ -64,7 +64,7 @@ class AttestationCustomPdf extends Fpdi
$this->Ln(3); $this->Ln(3);
$this->SetFont('Arial', '', 7); $this->SetFont('Arial', '', 7);
$this->SetTextColor(0, 0, 0); $this->SetTextColor(0, 0, 0);
$this->Cell(190, 3, $this->enc('42 rue de Saint-Quentin - 02800 BEAUTOR - Tel: 07 66 95 70 06 - contact@e-cosplay.fr'), 0, 1, 'C'); $this->Cell(190, 3, $this->enc('42 rue de Saint-Quentin - 02800 BEAUTOR - Tel: 07 66 95 70 06 - client@e-cosplay.fr'), 0, 1, 'C');
$this->Cell(190, 3, $this->enc('Association E-Cosplay - N SIRET 943 121 517 00011 - CODE APE 9329Z - RNA W022006988'), 0, 1, 'C'); $this->Cell(190, 3, $this->enc('Association E-Cosplay - N SIRET 943 121 517 00011 - CODE APE 9329Z - RNA W022006988'), 0, 1, 'C');
$this->SetFont('Arial', 'I', 7); $this->SetFont('Arial', 'I', 7);
$this->SetTextColor(150, 150, 150); $this->SetTextColor(150, 150, 150);

View File

@@ -42,7 +42,7 @@ class ClientClosurePdf extends Fpdi
$this->Ln(3); $this->Ln(3);
$this->SetFont('Arial', '', 7); $this->SetFont('Arial', '', 7);
$this->SetTextColor(0, 0, 0); $this->SetTextColor(0, 0, 0);
$this->Cell(190, 3, $this->enc('42 rue de Saint-Quentin - 02800 BEAUTOR - Tel: 07 66 95 70 06 - contact@e-cosplay.fr'), 0, 1, 'C'); $this->Cell(190, 3, $this->enc('42 rue de Saint-Quentin - 02800 BEAUTOR - Tel: 07 66 95 70 06 - client@e-cosplay.fr'), 0, 1, 'C');
$this->Cell(190, 3, $this->enc('Association E-Cosplay - N SIRET 943 121 517 00011 - CODE APE 9329Z - RNA W022006988'), 0, 1, 'C'); $this->Cell(190, 3, $this->enc('Association E-Cosplay - N SIRET 943 121 517 00011 - CODE APE 9329Z - RNA W022006988'), 0, 1, 'C');
$this->SetFont('Arial', 'I', 7); $this->SetFont('Arial', 'I', 7);
$this->SetTextColor(150, 150, 150); $this->SetTextColor(150, 150, 150);

View File

@@ -62,7 +62,7 @@ class ClientWarningPdf extends Fpdi
$this->Ln(3); $this->Ln(3);
$this->SetFont('Arial', '', 7); $this->SetFont('Arial', '', 7);
$this->SetTextColor(0, 0, 0); $this->SetTextColor(0, 0, 0);
$this->Cell(190, 3, $this->enc('42 rue de Saint-Quentin - 02800 BEAUTOR - Tel: 07 66 95 70 06 - contact@e-cosplay.fr'), 0, 1, 'C'); $this->Cell(190, 3, $this->enc('42 rue de Saint-Quentin - 02800 BEAUTOR - Tel: 07 66 95 70 06 - client@e-cosplay.fr'), 0, 1, 'C');
$this->Cell(190, 3, $this->enc('Association E-Cosplay - N SIRET 943 121 517 00011 - CODE APE 9329Z - RNA W022006988'), 0, 1, 'C'); $this->Cell(190, 3, $this->enc('Association E-Cosplay - N SIRET 943 121 517 00011 - CODE APE 9329Z - RNA W022006988'), 0, 1, 'C');
$this->SetFont('Arial', 'I', 7); $this->SetFont('Arial', 'I', 7);
$this->SetTextColor(150, 150, 150); $this->SetTextColor(150, 150, 150);
@@ -215,7 +215,7 @@ class ClientWarningPdf extends Fpdi
$this->Ln(3); $this->Ln(3);
$this->SetFont('Arial', '', 10); $this->SetFont('Arial', '', 10);
$this->Cell(0, 5, $this->enc('Contact : contact@e-cosplay.fr'), 0, 1, 'L'); $this->Cell(0, 5, $this->enc('Contact : client@e-cosplay.fr'), 0, 1, 'L');
$this->Ln(5); $this->Ln(5);
} }

View File

@@ -41,7 +41,7 @@ class ClientWarningResetPdf extends Fpdi
$this->Ln(3); $this->Ln(3);
$this->SetFont('Arial', '', 7); $this->SetFont('Arial', '', 7);
$this->SetTextColor(0, 0, 0); $this->SetTextColor(0, 0, 0);
$this->Cell(190, 3, $this->enc('42 rue de Saint-Quentin - 02800 BEAUTOR - Tel: 07 66 95 70 06 - contact@e-cosplay.fr'), 0, 1, 'C'); $this->Cell(190, 3, $this->enc('42 rue de Saint-Quentin - 02800 BEAUTOR - Tel: 07 66 95 70 06 - client@e-cosplay.fr'), 0, 1, 'C');
$this->Cell(190, 3, $this->enc('Association E-Cosplay - N SIRET 943 121 517 00011 - CODE APE 9329Z - RNA W022006988'), 0, 1, 'C'); $this->Cell(190, 3, $this->enc('Association E-Cosplay - N SIRET 943 121 517 00011 - CODE APE 9329Z - RNA W022006988'), 0, 1, 'C');
$this->SetFont('Arial', 'I', 7); $this->SetFont('Arial', 'I', 7);
$this->SetTextColor(150, 150, 150); $this->SetTextColor(150, 150, 150);

View File

@@ -109,7 +109,7 @@ class ComptaPdf extends Fpdi
$this->Ln(3); $this->Ln(3);
$this->SetFont('Arial', '', 7); $this->SetFont('Arial', '', 7);
$this->SetTextColor(0, 0, 0); $this->SetTextColor(0, 0, 0);
$this->Cell(0, 3, $this->enc('42 rue de Saint-Quentin - 02800 BEAUTOR - Tel: 07 66 95 70 06 - contact@e-cosplay.fr - www.e-cosplay.fr'), 0, 1, 'C'); $this->Cell(0, 3, $this->enc('42 rue de Saint-Quentin - 02800 BEAUTOR - Tel: 07 66 95 70 06 - client@e-cosplay.fr - www.e-cosplay.fr'), 0, 1, 'C');
$this->Cell(0, 3, $this->enc('Association E-Cosplay - N SIRET 943 121 517 00011 - CODE APE 9329Z - RNA W022006988'), 0, 1, 'C'); $this->Cell(0, 3, $this->enc('Association E-Cosplay - N SIRET 943 121 517 00011 - CODE APE 9329Z - RNA W022006988'), 0, 1, 'C');
$this->SetFont('Arial', 'I', 7); $this->SetFont('Arial', 'I', 7);

View File

@@ -42,7 +42,7 @@ class ContratMigrationSiteconseilPdf extends Fpdi
$this->Ln(3); $this->Ln(3);
$this->SetFont('Arial', '', 7); $this->SetFont('Arial', '', 7);
$this->SetTextColor(0, 0, 0); $this->SetTextColor(0, 0, 0);
$this->Cell(190, 3, $this->enc('42 rue de Saint-Quentin - 02800 BEAUTOR - Tel: 07 66 95 70 06 - contact@e-cosplay.fr'), 0, 1, 'C'); $this->Cell(190, 3, $this->enc('42 rue de Saint-Quentin - 02800 BEAUTOR - Tel: 07 66 95 70 06 - client@e-cosplay.fr'), 0, 1, 'C');
$this->Cell(190, 3, $this->enc('Association E-Cosplay - N SIRET 943 121 517 00011 - CODE APE 9329Z - RNA W022006988'), 0, 1, 'C'); $this->Cell(190, 3, $this->enc('Association E-Cosplay - N SIRET 943 121 517 00011 - CODE APE 9329Z - RNA W022006988'), 0, 1, 'C');
$this->SetFont('Arial', 'I', 7); $this->SetFont('Arial', 'I', 7);
$this->SetTextColor(150, 150, 150); $this->SetTextColor(150, 150, 150);

View File

@@ -261,7 +261,7 @@ class DevisPdf extends Fpdi
$this->SetFont('Arial', '', 8); $this->SetFont('Arial', '', 8);
$this->SetTextColor(0, 0, 0); $this->SetTextColor(0, 0, 0);
$this->Cell(190, 4, $this->enc('42 rue de Saint-Quentin - 02800 BEAUTOR - Tél: 07 66 95 70 06'), 0, 1, 'C'); $this->Cell(190, 4, $this->enc('42 rue de Saint-Quentin - 02800 BEAUTOR - Tél: 07 66 95 70 06'), 0, 1, 'C');
$this->Cell(190, 4, $this->enc('e-mail : contact@e-cosplay.fr - www.e-cosplay.fr'), 0, 1, 'C'); $this->Cell(190, 4, $this->enc('e-mail : client@e-cosplay.fr - www.e-cosplay.fr'), 0, 1, 'C');
$this->Cell(190, 4, $this->enc('Association E-Cosplay - N°SIRET 943 121 517 00011 - CODE APE 9329Z - RNA W022006988'), 0, 1, 'C'); $this->Cell(190, 4, $this->enc('Association E-Cosplay - N°SIRET 943 121 517 00011 - CODE APE 9329Z - RNA W022006988'), 0, 1, 'C');
// Numero de page avec alias {nb} // Numero de page avec alias {nb}

View File

@@ -49,7 +49,7 @@ class EFlexPdf extends Fpdi
$this->Ln(3); $this->Ln(3);
$this->SetFont('Arial', '', 7); $this->SetFont('Arial', '', 7);
$this->SetTextColor(0, 0, 0); $this->SetTextColor(0, 0, 0);
$this->Cell(190, 3, $this->enc('42 rue de Saint-Quentin - 02800 BEAUTOR - Tel: 07 66 95 70 06 - contact@e-cosplay.fr'), 0, 1, 'C'); $this->Cell(190, 3, $this->enc('42 rue de Saint-Quentin - 02800 BEAUTOR - Tel: 07 66 95 70 06 - client@e-cosplay.fr'), 0, 1, 'C');
$this->Cell(190, 3, $this->enc('Association E-Cosplay - N SIRET 943 121 517 00011 - CODE APE 9329Z - RNA W022006988'), 0, 1, 'C'); $this->Cell(190, 3, $this->enc('Association E-Cosplay - N SIRET 943 121 517 00011 - CODE APE 9329Z - RNA W022006988'), 0, 1, 'C');
$this->SetFont('Arial', 'I', 7); $this->SetFont('Arial', 'I', 7);
$this->SetTextColor(150, 150, 150); $this->SetTextColor(150, 150, 150);

View File

@@ -49,7 +49,7 @@ class EcheancierAttestationPdf extends Fpdi
$this->Ln(3); $this->Ln(3);
$this->SetFont('Arial', '', 7); $this->SetFont('Arial', '', 7);
$this->SetTextColor(0, 0, 0); $this->SetTextColor(0, 0, 0);
$this->Cell(190, 3, $this->enc('42 rue de Saint-Quentin - 02800 BEAUTOR - Tel: 07 66 95 70 06 - contact@e-cosplay.fr'), 0, 1, 'C'); $this->Cell(190, 3, $this->enc('42 rue de Saint-Quentin - 02800 BEAUTOR - Tel: 07 66 95 70 06 - client@e-cosplay.fr'), 0, 1, 'C');
$this->Cell(190, 3, $this->enc('Association E-Cosplay - N SIRET 943 121 517 00011 - CODE APE 9329Z - RNA W022006988'), 0, 1, 'C'); $this->Cell(190, 3, $this->enc('Association E-Cosplay - N SIRET 943 121 517 00011 - CODE APE 9329Z - RNA W022006988'), 0, 1, 'C');
$this->SetFont('Arial', 'I', 7); $this->SetFont('Arial', 'I', 7);
$this->SetTextColor(150, 150, 150); $this->SetTextColor(150, 150, 150);

View File

@@ -47,7 +47,7 @@ class EcheancierPdf extends Fpdi
$this->Ln(3); $this->Ln(3);
$this->SetFont('Arial', '', 7); $this->SetFont('Arial', '', 7);
$this->SetTextColor(0, 0, 0); $this->SetTextColor(0, 0, 0);
$this->Cell(190, 3, $this->enc('42 rue de Saint-Quentin - 02800 BEAUTOR - Tel: 07 66 95 70 06 - contact@e-cosplay.fr'), 0, 1, 'C'); $this->Cell(190, 3, $this->enc('42 rue de Saint-Quentin - 02800 BEAUTOR - Tel: 07 66 95 70 06 - client@e-cosplay.fr'), 0, 1, 'C');
$this->Cell(190, 3, $this->enc('Association E-Cosplay - N SIRET 943 121 517 00011 - CODE APE 9329Z - RNA W022006988'), 0, 1, 'C'); $this->Cell(190, 3, $this->enc('Association E-Cosplay - N SIRET 943 121 517 00011 - CODE APE 9329Z - RNA W022006988'), 0, 1, 'C');
$this->SetFont('Arial', 'I', 7); $this->SetFont('Arial', 'I', 7);
$this->SetTextColor(150, 150, 150); $this->SetTextColor(150, 150, 150);
@@ -222,7 +222,7 @@ class EcheancierPdf extends Fpdi
'Le prelevement sera effectue automatiquement a chaque date prevue via Stripe.', 'Le prelevement sera effectue automatiquement a chaque date prevue via Stripe.',
'En cas d\'echec de prelevement, une relance sera envoyee par email.', 'En cas d\'echec de prelevement, une relance sera envoyee par email.',
'Apres 2 echecs consecutifs, l\'echeancier sera considere en defaut.', 'Apres 2 echecs consecutifs, l\'echeancier sera considere en defaut.',
'Le client peut contacter contact@e-cosplay.fr pour toute question.', 'Le client peut contacter client@e-cosplay.fr pour toute question.',
'Majoration de 5% du montant total conformement aux CGV (article 11).', 'Majoration de 5% du montant total conformement aux CGV (article 11).',
]; ];

View File

@@ -290,7 +290,7 @@ class FacturePdf extends Fpdi
$this->SetFont('Arial', '', 8); $this->SetFont('Arial', '', 8);
$this->SetTextColor(0, 0, 0); $this->SetTextColor(0, 0, 0);
$this->Cell(190, 4, $this->enc('42 rue de Saint-Quentin - 02800 BEAUTOR - Tél: 07 66 95 70 06'), 0, 1, 'C'); $this->Cell(190, 4, $this->enc('42 rue de Saint-Quentin - 02800 BEAUTOR - Tél: 07 66 95 70 06'), 0, 1, 'C');
$this->Cell(190, 4, $this->enc('e-mail : contact@e-cosplay.fr - www.e-cosplay.fr'), 0, 1, 'C'); $this->Cell(190, 4, $this->enc('e-mail : client@e-cosplay.fr - www.e-cosplay.fr'), 0, 1, 'C');
$this->Cell(190, 4, $this->enc('Association E-Cosplay - N°SIRET 943 121 517 00011 - CODE APE 9329Z - RNA W022006988'), 0, 1, 'C'); $this->Cell(190, 4, $this->enc('Association E-Cosplay - N°SIRET 943 121 517 00011 - CODE APE 9329Z - RNA W022006988'), 0, 1, 'C');
$this->SetFont('Arial', 'I', 7); $this->SetFont('Arial', 'I', 7);

View File

@@ -111,7 +111,7 @@ class RapportFinancierPdf extends Fpdi
$this->Ln(3); $this->Ln(3);
$this->SetFont('Arial', '', 8); $this->SetFont('Arial', '', 8);
$this->SetTextColor(0, 0, 0); $this->SetTextColor(0, 0, 0);
$this->Cell(190, 4, $this->enc('42 rue de Saint-Quentin - 02800 BEAUTOR - Tel: 07 66 95 70 06 - contact@e-cosplay.fr'), 0, 1, 'C'); $this->Cell(190, 4, $this->enc('42 rue de Saint-Quentin - 02800 BEAUTOR - Tel: 07 66 95 70 06 - client@e-cosplay.fr'), 0, 1, 'C');
$this->Cell(190, 4, $this->enc('Association E-Cosplay - N SIRET 943 121 517 00011 - CODE APE 9329Z - RNA W022006988'), 0, 1, 'C'); $this->Cell(190, 4, $this->enc('Association E-Cosplay - N SIRET 943 121 517 00011 - CODE APE 9329Z - RNA W022006988'), 0, 1, 'C');
$this->SetFont('Arial', 'I', 7); $this->SetFont('Arial', 'I', 7);

View File

@@ -92,7 +92,7 @@
{% block footer_contact %} {% block footer_contact %}
<div style="margin-top: 24px;"> <div style="margin-top: 24px;">
<span class="contact-box">contact@e-cosplay.fr</span> <span class="contact-box">client@e-cosplay.fr</span>
</div> </div>
{% endblock %} {% endblock %}
@@ -100,6 +100,6 @@
{% block footer_legal %} {% block footer_legal %}
Association E-Cosplay &mdash; Siret : 943 121 517 &mdash; TVA : FR05 943 121 517<br> Association E-Cosplay &mdash; Siret : 943 121 517 &mdash; TVA : FR05 943 121 517<br>
42 rue de Beautor, 02800 Beautor, France &mdash; contact@e-cosplay.fr<br> 42 rue de Beautor, 02800 Beautor, France &mdash; client@e-cosplay.fr<br>
<a href="https://www.e-cosplay.fr" style="color: #999;">www.e-cosplay.fr</a> <a href="https://www.e-cosplay.fr" style="color: #999;">www.e-cosplay.fr</a>
{% endblock %} {% endblock %}

View File

@@ -97,7 +97,7 @@
{% endif %} {% endif %}
<p class="text-center text-xs text-gray-400 mt-6"> <p class="text-center text-xs text-gray-400 mt-6">
Pour toute question : <a href="mailto:contact@e-cosplay.fr" class="font-bold" style="color: #fabf04;">contact@e-cosplay.fr</a> Pour toute question : <a href="mailto:client@e-cosplay.fr" class="font-bold" style="color: #fabf04;">client@e-cosplay.fr</a>
</p> </p>
</div> </div>
</div> </div>

View File

@@ -15,7 +15,7 @@
"name": "CRM E-Cosplay", "name": "CRM E-Cosplay",
"url": "https://crm.e-cosplay.fr", "url": "https://crm.e-cosplay.fr",
"logo": "https://crm.e-cosplay.fr/logo.jpg", "logo": "https://crm.e-cosplay.fr/logo.jpg",
"email": "contact@e-cosplay.fr", "email": "client@e-cosplay.fr",
"telephone": "+33679348802", "telephone": "+33679348802",
"address": { "address": {
"@type": "PostalAddress", "@type": "PostalAddress",
@@ -138,8 +138,8 @@
<div class="space-y-4"> <div class="space-y-4">
<h3 class="text-3xl font-black uppercase tracking-tighter italic border-b-4 border-gray-900 inline-block">Nous Contacter</h3> <h3 class="text-3xl font-black uppercase tracking-tighter italic border-b-4 border-gray-900 inline-block">Nous Contacter</h3>
<p class="font-bold text-lg leading-tight">42 RUE DE SAINT-QUENTIN<br>02800 BEAUTOR, FRANCE</p> <p class="font-bold text-lg leading-tight">42 RUE DE SAINT-QUENTIN<br>02800 BEAUTOR, FRANCE</p>
<a href="mailto:contact@e-cosplay.fr" class="inline-block bg-gray-900 text-white px-4 py-2 font-black uppercase text-sm hover:bg-indigo-600 transition-colors"> <a href="mailto:client@e-cosplay.fr" class="inline-block bg-gray-900 text-white px-4 py-2 font-black uppercase text-sm hover:bg-indigo-600 transition-colors">
contact@e-cosplay.fr client@e-cosplay.fr
</a> </a>
</div> </div>

View File

@@ -26,7 +26,7 @@
{% endif %} {% endif %}
<p class="text-[10px] text-gray-400 uppercase tracking-widest"> <p class="text-[10px] text-gray-400 uppercase tracking-widest">
Une question ? <a href="mailto:contact@e-cosplay.fr" class="text-[#fabf04] hover:underline">contact@e-cosplay.fr</a> Une question ? <a href="mailto:client@e-cosplay.fr" class="text-[#fabf04] hover:underline">client@e-cosplay.fr</a>
</p> </p>
</div> </div>
</main> </main>

View File

@@ -49,7 +49,7 @@
{% endif %} {% endif %}
<p class="text-[10px] text-gray-400 uppercase tracking-widest"> <p class="text-[10px] text-gray-400 uppercase tracking-widest">
Une question ? <a href="mailto:contact@e-cosplay.fr" class="text-[#fabf04] hover:underline">contact@e-cosplay.fr</a> Une question ? <a href="mailto:client@e-cosplay.fr" class="text-[#fabf04] hover:underline">client@e-cosplay.fr</a>
</p> </p>
</div> </div>
</main> </main>

View File

@@ -103,7 +103,7 @@
{% endif %} {% endif %}
<p class="text-center text-xs text-gray-400 mt-6"> <p class="text-center text-xs text-gray-400 mt-6">
Pour toute question : <a href="mailto:contact@e-cosplay.fr" class="font-bold" style="color: #fabf04;">contact@e-cosplay.fr</a> Pour toute question : <a href="mailto:client@e-cosplay.fr" class="font-bold" style="color: #fabf04;">client@e-cosplay.fr</a>
</p> </p>
</div> </div>
</div> </div>

View File

@@ -18,7 +18,7 @@
</p> </p>
<p class="text-xs text-gray-400"> <p class="text-xs text-gray-400">
Si vous souhaitez discuter d'autres modalites de paiement, contactez-nous a Si vous souhaitez discuter d'autres modalites de paiement, contactez-nous a
<a href="mailto:contact@e-cosplay.fr" class="font-bold" style="color: #fabf04;">contact@e-cosplay.fr</a> <a href="mailto:client@e-cosplay.fr" class="font-bold" style="color: #fabf04;">client@e-cosplay.fr</a>
</p> </p>
</div> </div>
</div> </div>

View File

@@ -30,7 +30,7 @@
Vous recevrez un email de confirmation lorsque le paiement sera traite. Vous recevrez un email de confirmation lorsque le paiement sera traite.
</p> </p>
<p class="text-xs text-gray-400 mt-4"> <p class="text-xs text-gray-400 mt-4">
Pour toute question : <a href="mailto:contact@e-cosplay.fr" class="font-bold" style="color: #fabf04;">contact@e-cosplay.fr</a> Pour toute question : <a href="mailto:client@e-cosplay.fr" class="font-bold" style="color: #fabf04;">client@e-cosplay.fr</a>
</p> </p>
</div> </div>
</div> </div>

View File

@@ -87,7 +87,7 @@
</form> </form>
<p class="text-center text-xs text-gray-400 mt-6"> <p class="text-center text-xs text-gray-400 mt-6">
Pour toute question : <a href="mailto:contact@e-cosplay.fr" class="font-bold" style="color: #fabf04;">contact@e-cosplay.fr</a> Pour toute question : <a href="mailto:client@e-cosplay.fr" class="font-bold" style="color: #fabf04;">client@e-cosplay.fr</a>
</p> </p>
</div> </div>
</div> </div>

View File

@@ -104,7 +104,7 @@
</p> </p>
<p class="text-center text-xs text-gray-400 mt-6"> <p class="text-center text-xs text-gray-400 mt-6">
Pour toute question : <a href="mailto:contact@e-cosplay.fr" class="font-bold" style="color: #fabf04;">contact@e-cosplay.fr</a> Pour toute question : <a href="mailto:client@e-cosplay.fr" class="font-bold" style="color: #fabf04;">client@e-cosplay.fr</a>
</p> </p>
</div> </div>
</div> </div>

View File

@@ -85,7 +85,7 @@
{% endif %} {% endif %}
<p class="text-center text-xs text-gray-400 mt-6"> <p class="text-center text-xs text-gray-400 mt-6">
Pour toute question : <a href="mailto:contact@e-cosplay.fr" class="font-bold" style="color: #fabf04;">contact@e-cosplay.fr</a> Pour toute question : <a href="mailto:client@e-cosplay.fr" class="font-bold" style="color: #fabf04;">client@e-cosplay.fr</a>
</p> </p>
</div> </div>
</div> </div>

View File

@@ -185,7 +185,7 @@
{% endif %} {% endif %}
<p class="text-center text-xs text-gray-400 mt-6"> <p class="text-center text-xs text-gray-400 mt-6">
Pour toute question : <a href="mailto:contact@e-cosplay.fr" class="font-bold" style="color: #fabf04;">contact@e-cosplay.fr</a> Pour toute question : <a href="mailto:client@e-cosplay.fr" class="font-bold" style="color: #fabf04;">client@e-cosplay.fr</a>
</p> </p>
</div> </div>
</div> </div>

View File

@@ -61,7 +61,7 @@
</button> </button>
</form> </form>
<p class="text-center text-xs text-gray-400 mt-6">Pour toute question : <a href="mailto:contact@e-cosplay.fr" class="font-bold" style="color: #fabf04;">contact@e-cosplay.fr</a></p> <p class="text-center text-xs text-gray-400 mt-6">Pour toute question : <a href="mailto:client@e-cosplay.fr" class="font-bold" style="color: #fabf04;">client@e-cosplay.fr</a></p>
</div> </div>
</div> </div>
</div> </div>

View File

@@ -75,7 +75,7 @@
</table> </table>
</div> </div>
<p class="text-center text-xs text-gray-400 mt-6">Pour toute question : <a href="mailto:contact@e-cosplay.fr" class="font-bold" style="color: #fabf04;">contact@e-cosplay.fr</a></p> <p class="text-center text-xs text-gray-400 mt-6">Pour toute question : <a href="mailto:client@e-cosplay.fr" class="font-bold" style="color: #fabf04;">client@e-cosplay.fr</a></p>
</div> </div>
</div> </div>
</div> </div>

View File

@@ -26,7 +26,7 @@
<p class="text-xs text-gray-500"><strong>Methode :</strong> {{ eflex.paymentMethodLabel }}</p> <p class="text-xs text-gray-500"><strong>Methode :</strong> {{ eflex.paymentMethodLabel }}</p>
</div> </div>
<p class="text-xs text-gray-400 mt-4"> <p class="text-xs text-gray-400 mt-4">
Pour toute question : <a href="mailto:contact@e-cosplay.fr" class="font-bold" style="color: #fabf04;">contact@e-cosplay.fr</a> Pour toute question : <a href="mailto:client@e-cosplay.fr" class="font-bold" style="color: #fabf04;">client@e-cosplay.fr</a>
</p> </p>
</div> </div>
</div> </div>

View File

@@ -84,7 +84,7 @@
</p> </p>
<p style="font-family: Arial, Helvetica, sans-serif; font-size: 12px; color: #9ca3af; margin: 20px 0 0;"> <p style="font-family: Arial, Helvetica, sans-serif; font-size: 12px; color: #9ca3af; margin: 20px 0 0;">
Pour toute question : <a href="mailto:contact@e-cosplay.fr" style="color: #fabf04; font-weight: 700;">contact@e-cosplay.fr</a> Pour toute question : <a href="mailto:client@e-cosplay.fr" style="color: #fabf04; font-weight: 700;">client@e-cosplay.fr</a>
</p> </p>
<p style="font-family: Arial, Helvetica, sans-serif; font-size: 10px; color: #d1d5db; margin: 16px 0 0;"> <p style="font-family: Arial, Helvetica, sans-serif; font-size: 10px; color: #d1d5db; margin: 16px 0 0;">

View File

@@ -22,7 +22,7 @@
</p> </p>
<p style="font-family: Arial, Helvetica, sans-serif; font-size: 12px; color: #9ca3af; margin: 20px 0 0;"> <p style="font-family: Arial, Helvetica, sans-serif; font-size: 12px; color: #9ca3af; margin: 20px 0 0;">
Pour toute question : <a href="mailto:contact@e-cosplay.fr" style="color: #fabf04; font-weight: 700;">contact@e-cosplay.fr</a> Pour toute question : <a href="mailto:client@e-cosplay.fr" style="color: #fabf04; font-weight: 700;">client@e-cosplay.fr</a>
</p> </p>
</td> </td>
</tr> </tr>

View File

@@ -37,7 +37,7 @@
</ul> </ul>
<p style="font-family: Arial, Helvetica, sans-serif; font-size: 12px; color: #9ca3af; margin: 16px 0 0;"> <p style="font-family: Arial, Helvetica, sans-serif; font-size: 12px; color: #9ca3af; margin: 16px 0 0;">
Pour toute question : <a href="mailto:contact@e-cosplay.fr" style="color: #fabf04;">contact@e-cosplay.fr</a> Pour toute question : <a href="mailto:client@e-cosplay.fr" style="color: #fabf04;">client@e-cosplay.fr</a>
</p> </p>
</td> </td>
</tr> </tr>

View File

@@ -52,7 +52,7 @@
</div> </div>
<p style="font-family: Arial, Helvetica, sans-serif; font-size: 12px; color: #9ca3af; margin: 16px 0 0;"> <p style="font-family: Arial, Helvetica, sans-serif; font-size: 12px; color: #9ca3af; margin: 16px 0 0;">
Pour toute question : <a href="mailto:contact@e-cosplay.fr" style="color: #fabf04;">contact@e-cosplay.fr</a> Pour toute question : <a href="mailto:client@e-cosplay.fr" style="color: #fabf04;">client@e-cosplay.fr</a>
</p> </p>
</td> </td>
</tr> </tr>

View File

@@ -36,7 +36,7 @@
</p> </p>
<p style="font-family: Arial, Helvetica, sans-serif; font-size: 12px; color: #9ca3af; margin: 16px 0 0;"> <p style="font-family: Arial, Helvetica, sans-serif; font-size: 12px; color: #9ca3af; margin: 16px 0 0;">
Pour toute question : <a href="mailto:contact@e-cosplay.fr" style="color: #fabf04;">contact@e-cosplay.fr</a> Pour toute question : <a href="mailto:client@e-cosplay.fr" style="color: #fabf04;">client@e-cosplay.fr</a>
</p> </p>
</td> </td>
</tr> </tr>

View File

@@ -15,7 +15,7 @@
</div> </div>
{% endif %} {% endif %}
<p style="font-family: Arial, Helvetica, sans-serif; font-size: 12px; color: #9ca3af; margin: 24px 0 0;"> <p style="font-family: Arial, Helvetica, sans-serif; font-size: 12px; color: #9ca3af; margin: 24px 0 0;">
Pour toute question : <a href="mailto:contact@e-cosplay.fr" style="color: #fabf04;">contact@e-cosplay.fr</a> Pour toute question : <a href="mailto:client@e-cosplay.fr" style="color: #fabf04;">client@e-cosplay.fr</a>
</p> </p>
</td> </td>
</tr> </tr>

View File

@@ -25,7 +25,7 @@
</tr> </tr>
</table> </table>
<p style="font-family: Arial, Helvetica, sans-serif; font-size: 12px; color: #9ca3af; margin: 0;"> <p style="font-family: Arial, Helvetica, sans-serif; font-size: 12px; color: #9ca3af; margin: 0;">
Pour toute question : <a href="mailto:contact@e-cosplay.fr" style="color: #fabf04;">contact@e-cosplay.fr</a> Pour toute question : <a href="mailto:client@e-cosplay.fr" style="color: #fabf04;">client@e-cosplay.fr</a>
</p> </p>
</td> </td>
</tr> </tr>

View File

@@ -95,7 +95,7 @@
<p style="font-family: Arial, Helvetica, sans-serif; font-size: 12px; color: #9ca3af; margin: 20px 0 0;"> <p style="font-family: Arial, Helvetica, sans-serif; font-size: 12px; color: #9ca3af; margin: 20px 0 0;">
Attestation emise le {{ "now"|date('d/m/Y') }} par Association E-Cosplay.<br> Attestation emise le {{ "now"|date('d/m/Y') }} par Association E-Cosplay.<br>
Pour toute question : <a href="mailto:contact@e-cosplay.fr" style="color: #fabf04;">contact@e-cosplay.fr</a> Pour toute question : <a href="mailto:client@e-cosplay.fr" style="color: #fabf04;">client@e-cosplay.fr</a>
</p> </p>
</td> </td>
</tr> </tr>

View File

@@ -43,7 +43,7 @@
</p> </p>
<p style="font-family: Arial, Helvetica, sans-serif; font-size: 12px; color: #9ca3af; margin: 16px 0 0;"> <p style="font-family: Arial, Helvetica, sans-serif; font-size: 12px; color: #9ca3af; margin: 16px 0 0;">
Pour toute question : <a href="mailto:contact@e-cosplay.fr" style="color: #fabf04;">contact@e-cosplay.fr</a> Pour toute question : <a href="mailto:client@e-cosplay.fr" style="color: #fabf04;">client@e-cosplay.fr</a>
</p> </p>
</td> </td>
</tr> </tr>

View File

@@ -45,7 +45,7 @@
</p> </p>
<p style="font-family: Arial, Helvetica, sans-serif; font-size: 12px; color: #9ca3af; margin: 16px 0 0;"> <p style="font-family: Arial, Helvetica, sans-serif; font-size: 12px; color: #9ca3af; margin: 16px 0 0;">
Pour toute question : <a href="mailto:contact@e-cosplay.fr" style="color: #fabf04;">contact@e-cosplay.fr</a> Pour toute question : <a href="mailto:client@e-cosplay.fr" style="color: #fabf04;">client@e-cosplay.fr</a>
</p> </p>
</td> </td>
</tr> </tr>

View File

@@ -68,7 +68,7 @@
</p> </p>
<p style="font-family: Arial, Helvetica, sans-serif; font-size: 12px; color: #9ca3af; margin: 16px 0 0;"> <p style="font-family: Arial, Helvetica, sans-serif; font-size: 12px; color: #9ca3af; margin: 16px 0 0;">
Pour toute question : <a href="mailto:contact@e-cosplay.fr" style="color: #fabf04;">contact@e-cosplay.fr</a> Pour toute question : <a href="mailto:client@e-cosplay.fr" style="color: #fabf04;">client@e-cosplay.fr</a>
</p> </p>
</td> </td>
</tr> </tr>

View File

@@ -49,7 +49,7 @@
</p> </p>
<p style="font-family: Arial, Helvetica, sans-serif; font-size: 12px; color: #9ca3af; margin: 16px 0 0;"> <p style="font-family: Arial, Helvetica, sans-serif; font-size: 12px; color: #9ca3af; margin: 16px 0 0;">
Pour toute question : <a href="mailto:contact@e-cosplay.fr" style="color: #fabf04;">contact@e-cosplay.fr</a> Pour toute question : <a href="mailto:client@e-cosplay.fr" style="color: #fabf04;">client@e-cosplay.fr</a>
</p> </p>
</td> </td>
</tr> </tr>

View File

@@ -31,7 +31,7 @@
</table> </table>
<p style="font-family: Arial, Helvetica, sans-serif; font-size: 12px; color: #9ca3af; margin: 16px 0 0;"> <p style="font-family: Arial, Helvetica, sans-serif; font-size: 12px; color: #9ca3af; margin: 16px 0 0;">
Pour toute question : <a href="mailto:contact@e-cosplay.fr" style="color: #fabf04;">contact@e-cosplay.fr</a> Pour toute question : <a href="mailto:client@e-cosplay.fr" style="color: #fabf04;">client@e-cosplay.fr</a>
</p> </p>
</td> </td>
</tr> </tr>

View File

@@ -61,7 +61,7 @@
</p> </p>
<p style="font-family: Arial, Helvetica, sans-serif; font-size: 12px; color: #9ca3af; margin: 16px 0 0;"> <p style="font-family: Arial, Helvetica, sans-serif; font-size: 12px; color: #9ca3af; margin: 16px 0 0;">
Pour toute question : <a href="mailto:contact@e-cosplay.fr" style="color: #fabf04;">contact@e-cosplay.fr</a> Pour toute question : <a href="mailto:client@e-cosplay.fr" style="color: #fabf04;">client@e-cosplay.fr</a>
</p> </p>
</td> </td>
</tr> </tr>

View File

@@ -37,7 +37,7 @@
</p> </p>
<p style="font-family: Arial, Helvetica, sans-serif; font-size: 12px; color: #9ca3af; margin: 16px 0 0;"> <p style="font-family: Arial, Helvetica, sans-serif; font-size: 12px; color: #9ca3af; margin: 16px 0 0;">
Pour toute question : <a href="mailto:contact@e-cosplay.fr" style="color: #fabf04;">contact@e-cosplay.fr</a> Pour toute question : <a href="mailto:client@e-cosplay.fr" style="color: #fabf04;">client@e-cosplay.fr</a>
</p> </p>
</td> </td>
</tr> </tr>

View File

@@ -49,7 +49,7 @@
</p> </p>
<p style="font-family: Arial, Helvetica, sans-serif; font-size: 12px; color: #9ca3af; margin: 16px 0 0;"> <p style="font-family: Arial, Helvetica, sans-serif; font-size: 12px; color: #9ca3af; margin: 16px 0 0;">
Pour toute question : <a href="mailto:contact@e-cosplay.fr" style="color: #fabf04;">contact@e-cosplay.fr</a> Pour toute question : <a href="mailto:client@e-cosplay.fr" style="color: #fabf04;">client@e-cosplay.fr</a>
</p> </p>
</td> </td>
</tr> </tr>

View File

@@ -53,7 +53,7 @@
</div> </div>
<p style="font-family: Arial, Helvetica, sans-serif; font-size: 12px; color: #9ca3af; margin: 16px 0 0;"> <p style="font-family: Arial, Helvetica, sans-serif; font-size: 12px; color: #9ca3af; margin: 16px 0 0;">
Pour toute question : <a href="mailto:contact@e-cosplay.fr" style="color: #fabf04;">contact@e-cosplay.fr</a> Pour toute question : <a href="mailto:client@e-cosplay.fr" style="color: #fabf04;">client@e-cosplay.fr</a>
</p> </p>
</td> </td>
</tr> </tr>

View File

@@ -52,7 +52,7 @@
</p> </p>
<p style="font-family: Arial, Helvetica, sans-serif; font-size: 12px; color: #9ca3af; margin: 16px 0 0;"> <p style="font-family: Arial, Helvetica, sans-serif; font-size: 12px; color: #9ca3af; margin: 16px 0 0;">
Pour toute question : <a href="mailto:contact@e-cosplay.fr" style="color: #fabf04;">contact@e-cosplay.fr</a> Pour toute question : <a href="mailto:client@e-cosplay.fr" style="color: #fabf04;">client@e-cosplay.fr</a>
</p> </p>
</td> </td>
</tr> </tr>

View File

@@ -49,7 +49,7 @@
</p> </p>
<p style="font-family: Arial, Helvetica, sans-serif; font-size: 12px; color: #9ca3af; margin: 16px 0 0;"> <p style="font-family: Arial, Helvetica, sans-serif; font-size: 12px; color: #9ca3af; margin: 16px 0 0;">
Pour toute question : <a href="mailto:contact@e-cosplay.fr" style="color: #fabf04;">contact@e-cosplay.fr</a> Pour toute question : <a href="mailto:client@e-cosplay.fr" style="color: #fabf04;">client@e-cosplay.fr</a>
</p> </p>
</td> </td>
</tr> </tr>

View File

@@ -18,7 +18,7 @@
<p style="font-family: Arial, Helvetica, sans-serif; font-size: 14px; color: #374151; line-height: 22px; margin: 0 0 16px;">Vous pouvez regulariser par carte bancaire :</p> <p style="font-family: Arial, Helvetica, sans-serif; font-size: 14px; color: #374151; line-height: 22px; margin: 0 0 16px;">Vous pouvez regulariser par carte bancaire :</p>
<table cellpadding="0" cellspacing="0" style="margin: 24px auto;"><tr><td style="background-color: #fabf04; padding: 14px 32px;"><a href="{{ payUrl }}" style="font-family: Arial, Helvetica, sans-serif; font-size: 13px; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; color: #111827; text-decoration: none;">Payer par carte bancaire</a></td></tr></table> <table cellpadding="0" cellspacing="0" style="margin: 24px auto;"><tr><td style="background-color: #fabf04; padding: 14px 32px;"><a href="{{ payUrl }}" style="font-family: Arial, Helvetica, sans-serif; font-size: 13px; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; color: #111827; text-decoration: none;">Payer par carte bancaire</a></td></tr></table>
{% endif %} {% endif %}
<p style="font-family: Arial, Helvetica, sans-serif; font-size: 12px; color: #9ca3af; margin: 16px 0 0;">Pour toute question : <a href="mailto:contact@e-cosplay.fr" style="color: #fabf04;">contact@e-cosplay.fr</a></p> <p style="font-family: Arial, Helvetica, sans-serif; font-size: 12px; color: #9ca3af; margin: 16px 0 0;">Pour toute question : <a href="mailto:client@e-cosplay.fr" style="color: #fabf04;">client@e-cosplay.fr</a></p>
</td> </td>
</tr> </tr>
</table> </table>

View File

@@ -14,7 +14,7 @@
<tr><td style="padding: 10px 16px; font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; color: #9ca3af; background: #f9fafb;">Montant</td><td style="padding: 10px 16px; font-family: monospace; font-size: 16px; font-weight: 700; color: #16a34a;">{{ line.amount }} &euro;</td></tr> <tr><td style="padding: 10px 16px; font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; color: #9ca3af; background: #f9fafb;">Montant</td><td style="padding: 10px 16px; font-family: monospace; font-size: 16px; font-weight: 700; color: #16a34a;">{{ line.amount }} &euro;</td></tr>
<tr><td style="padding: 10px 16px; font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; color: #9ca3af; background: #f9fafb;">Progression</td><td style="padding: 10px 16px; font-size: 13px; font-weight: 700;">{{ eflex.nbPaid }}/{{ eflex.nbLines }} echeances payees ({{ eflex.progress }}%)</td></tr> <tr><td style="padding: 10px 16px; font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; color: #9ca3af; background: #f9fafb;">Progression</td><td style="padding: 10px 16px; font-size: 13px; font-weight: 700;">{{ eflex.nbPaid }}/{{ eflex.nbLines }} echeances payees ({{ eflex.progress }}%)</td></tr>
</table> </table>
<p style="font-family: Arial, Helvetica, sans-serif; font-size: 12px; color: #9ca3af; margin: 16px 0 0;">Pour toute question : <a href="mailto:contact@e-cosplay.fr" style="color: #fabf04;">contact@e-cosplay.fr</a></p> <p style="font-family: Arial, Helvetica, sans-serif; font-size: 12px; color: #9ca3af; margin: 16px 0 0;">Pour toute question : <a href="mailto:client@e-cosplay.fr" style="color: #fabf04;">client@e-cosplay.fr</a></p>
</td> </td>
</tr> </tr>
</table> </table>

View File

@@ -47,7 +47,7 @@
{% endif %} {% endif %}
<p style="font-family: Arial, Helvetica, sans-serif; font-size: 12px; color: #9ca3af; margin: 16px 0 0;"> <p style="font-family: Arial, Helvetica, sans-serif; font-size: 12px; color: #9ca3af; margin: 16px 0 0;">
Pour toute question : <a href="mailto:contact@e-cosplay.fr" style="color: #fabf04;">contact@e-cosplay.fr</a> Pour toute question : <a href="mailto:client@e-cosplay.fr" style="color: #fabf04;">client@e-cosplay.fr</a>
</p> </p>
</td> </td>
</tr> </tr>

View File

@@ -23,7 +23,7 @@
<p style="font-family: Arial, Helvetica, sans-serif; font-size: 11px; color: #374151; margin: 0;">Un credit vous engage et doit etre rembourse. Verifiez votre capacite de remboursement avant de vous engager.</p> <p style="font-family: Arial, Helvetica, sans-serif; font-size: 11px; color: #374151; margin: 0;">Un credit vous engage et doit etre rembourse. Verifiez votre capacite de remboursement avant de vous engager.</p>
</div> </div>
<p style="font-family: Arial, Helvetica, sans-serif; font-size: 14px; color: #374151; line-height: 22px; margin: 16px 0;">E-Flex est une solution de financement sans frais supplementaires proposee par l'Association E-Cosplay.</p> <p style="font-family: Arial, Helvetica, sans-serif; font-size: 14px; color: #374151; line-height: 22px; margin: 16px 0;">E-Flex est une solution de financement sans frais supplementaires proposee par l'Association E-Cosplay.</p>
<p style="font-family: Arial, Helvetica, sans-serif; font-size: 12px; color: #9ca3af; margin: 16px 0 0;">Pour toute question : <a href="mailto:contact@e-cosplay.fr" style="color: #fabf04;">contact@e-cosplay.fr</a></p> <p style="font-family: Arial, Helvetica, sans-serif; font-size: 12px; color: #9ca3af; margin: 16px 0 0;">Pour toute question : <a href="mailto:client@e-cosplay.fr" style="color: #fabf04;">client@e-cosplay.fr</a></p>
</td> </td>
</tr> </tr>
</table> </table>

View File

@@ -30,7 +30,7 @@
<table cellpadding="0" cellspacing="0" style="margin: 24px auto;"><tr><td style="background-color: #fabf04; padding: 14px 32px;"><a href="{{ processUrl }}" style="font-family: Arial, Helvetica, sans-serif; font-size: 13px; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; color: #111827; text-decoration: none;">Configurer mes paiements</a></td></tr></table> <table cellpadding="0" cellspacing="0" style="margin: 24px auto;"><tr><td style="background-color: #fabf04; padding: 14px 32px;"><a href="{{ processUrl }}" style="font-family: Arial, Helvetica, sans-serif; font-size: 13px; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; color: #111827; text-decoration: none;">Configurer mes paiements</a></td></tr></table>
{% endif %} {% endif %}
<p style="font-family: Arial, Helvetica, sans-serif; font-size: 12px; color: #9ca3af; margin: 16px 0 0;">Pour toute question : <a href="mailto:contact@e-cosplay.fr" style="color: #fabf04;">contact@e-cosplay.fr</a></p> <p style="font-family: Arial, Helvetica, sans-serif; font-size: 12px; color: #9ca3af; margin: 16px 0 0;">Pour toute question : <a href="mailto:client@e-cosplay.fr" style="color: #fabf04;">client@e-cosplay.fr</a></p>
</td> </td>
</tr> </tr>
</table> </table>

View File

@@ -37,7 +37,7 @@
<p style="font-family: Arial, Helvetica, sans-serif; font-size: 12px; color: #9ca3af; margin: 16px 0 0;"> <p style="font-family: Arial, Helvetica, sans-serif; font-size: 12px; color: #9ca3af; margin: 16px 0 0;">
La facture est en piece jointe de cet email.<br> La facture est en piece jointe de cet email.<br>
Pour toute question : <a href="mailto:contact@e-cosplay.fr" style="color: #fabf04;">contact@e-cosplay.fr</a> Pour toute question : <a href="mailto:client@e-cosplay.fr" style="color: #fabf04;">client@e-cosplay.fr</a>
</p> </p>
</td> </td>
</tr> </tr>

View File

@@ -51,5 +51,5 @@
<p style="font-size: 14px; mso-line-height-rule: exactly; line-height: 22px; margin-top: 16px; margin-right: 0; margin-bottom: 16px; margin-left: 0;">Une fois sur la page de connexion, cliquez sur le bouton <strong>"Connexion E-Cosplay"</strong> puis saisissez vos identifiants ci-dessus.</p> <p style="font-size: 14px; mso-line-height-rule: exactly; line-height: 22px; margin-top: 16px; margin-right: 0; margin-bottom: 16px; margin-left: 0;">Une fois sur la page de connexion, cliquez sur le bouton <strong>"Connexion E-Cosplay"</strong> puis saisissez vos identifiants ci-dessus.</p>
<p style="font-size: 12px; color: #999; margin-top: 16px; margin-right: 0; margin-bottom: 0; margin-left: 0;">Pour des raisons de securite, ne partagez jamais vos identifiants. Si vous n'etes pas a l'origine de cette demande, contactez <a href="mailto:contact@e-cosplay.fr" style="color: #4338ca;">contact@e-cosplay.fr</a>.</p> <p style="font-size: 12px; color: #999; margin-top: 16px; margin-right: 0; margin-bottom: 0; margin-left: 0;">Pour des raisons de securite, ne partagez jamais vos identifiants. Si vous n'etes pas a l'origine de cette demande, contactez <a href="mailto:client@e-cosplay.fr" style="color: #4338ca;">client@e-cosplay.fr</a>.</p>
{% endblock %} {% endblock %}

View File

@@ -6,6 +6,6 @@
<h1 style="font-size: 20px; font-weight: bold; text-transform: uppercase; margin-top: 0; margin-right: 0; margin-bottom: 16px; margin-left: 0;">Mot de passe modifie</h1> <h1 style="font-size: 20px; font-weight: bold; text-transform: uppercase; margin-top: 0; margin-right: 0; margin-bottom: 16px; margin-left: 0;">Mot de passe modifie</h1>
<p style="font-size: 14px; mso-line-height-rule: exactly; line-height: 22px; margin-top: 0; margin-right: 0; margin-bottom: 16px; margin-left: 0;">Bonjour,</p> <p style="font-size: 14px; mso-line-height-rule: exactly; line-height: 22px; margin-top: 0; margin-right: 0; margin-bottom: 16px; margin-left: 0;">Bonjour,</p>
<p style="font-size: 14px; mso-line-height-rule: exactly; line-height: 22px; margin-top: 0; margin-right: 0; margin-bottom: 16px; margin-left: 0;">Votre mot de passe sur le CRM E-Cosplay a ete <strong>modifie avec succes</strong>.</p> <p style="font-size: 14px; mso-line-height-rule: exactly; line-height: 22px; margin-top: 0; margin-right: 0; margin-bottom: 16px; margin-left: 0;">Votre mot de passe sur le CRM E-Cosplay a ete <strong>modifie avec succes</strong>.</p>
<p style="font-size: 14px; mso-line-height-rule: exactly; line-height: 22px; margin-top: 0; margin-right: 0; margin-bottom: 16px; margin-left: 0;">Si vous n'etes pas a l'origine de cette modification, contactez immediatement notre support a l'adresse <a href="mailto:contact@e-cosplay.fr" style="color: #4338ca;">contact@e-cosplay.fr</a>.</p> <p style="font-size: 14px; mso-line-height-rule: exactly; line-height: 22px; margin-top: 0; margin-right: 0; margin-bottom: 16px; margin-left: 0;">Si vous n'etes pas a l'origine de cette modification, contactez immediatement notre support a l'adresse <a href="mailto:client@e-cosplay.fr" style="color: #4338ca;">client@e-cosplay.fr</a>.</p>
<p style="font-size: 14px; mso-line-height-rule: exactly; line-height: 22px; margin-top: 0; margin-right: 0; margin-bottom: 0; margin-left: 0;">Cordialement,<br><strong>Association E-Cosplay</strong></p> <p style="font-size: 14px; mso-line-height-rule: exactly; line-height: 22px; margin-top: 0; margin-right: 0; margin-bottom: 0; margin-left: 0;">Cordialement,<br><strong>Association E-Cosplay</strong></p>
{% endblock %} {% endblock %}

View File

@@ -68,7 +68,7 @@
</table> </table>
<p style="font-family: Arial, Helvetica, sans-serif; font-size: 12px; color: #9ca3af; margin: 16px 0 0;"> <p style="font-family: Arial, Helvetica, sans-serif; font-size: 12px; color: #9ca3af; margin: 16px 0 0;">
Pour toute question : <a href="mailto:contact@e-cosplay.fr" style="color: #fabf04;">contact@e-cosplay.fr</a> Pour toute question : <a href="mailto:client@e-cosplay.fr" style="color: #fabf04;">client@e-cosplay.fr</a>
</p> </p>
</td> </td>
</tr> </tr>

View File

@@ -38,7 +38,7 @@
</p> </p>
<p style="font-family: Arial, Helvetica, sans-serif; font-size: 12px; color: #9ca3af; margin: 16px 0 0;"> <p style="font-family: Arial, Helvetica, sans-serif; font-size: 12px; color: #9ca3af; margin: 16px 0 0;">
Pour toute question : <a href="mailto:contact@e-cosplay.fr" style="color: #fabf04;">contact@e-cosplay.fr</a> Pour toute question : <a href="mailto:client@e-cosplay.fr" style="color: #fabf04;">client@e-cosplay.fr</a>
</p> </p>
</td> </td>
</tr> </tr>

View File

@@ -31,7 +31,7 @@
Votre facture vous sera envoyee prochainement par email. Votre facture vous sera envoyee prochainement par email.
</p> </p>
<p style="font-family: Arial, Helvetica, sans-serif; font-size: 12px; color: #9ca3af; margin: 16px 0 0;"> <p style="font-family: Arial, Helvetica, sans-serif; font-size: 12px; color: #9ca3af; margin: 16px 0 0;">
Pour toute question : <a href="mailto:contact@e-cosplay.fr" style="color: #fabf04;">contact@e-cosplay.fr</a> Pour toute question : <a href="mailto:client@e-cosplay.fr" style="color: #fabf04;">client@e-cosplay.fr</a>
</p> </p>
</td> </td>
</tr> </tr>

View File

@@ -56,5 +56,5 @@
</div> </div>
</div> </div>
<p style="font-size: 12px; color: #999; margin-top: 16px; margin-right: 0; margin-bottom: 0; margin-left: 0;">Pour toute question, contactez-nous a <a href="mailto:contact@e-cosplay.fr" style="color: #4338ca;">contact@e-cosplay.fr</a>. Conservez precieusement votre code revendeur {{ codeRevendeur }}.</p> <p style="font-size: 12px; color: #999; margin-top: 16px; margin-right: 0; margin-bottom: 0; margin-left: 0;">Pour toute question, contactez-nous a <a href="mailto:client@e-cosplay.fr" style="color: #4338ca;">client@e-cosplay.fr</a>. Conservez precieusement votre code revendeur {{ codeRevendeur }}.</p>
{% endblock %} {% endblock %}

View File

@@ -7,6 +7,6 @@
<p style="font-size: 14px; mso-line-height-rule: exactly; line-height: 22px; margin-top: 0; margin-right: 0; margin-bottom: 16px; margin-left: 0;">Bonjour,</p> <p style="font-size: 14px; mso-line-height-rule: exactly; line-height: 22px; margin-top: 0; margin-right: 0; margin-bottom: 16px; margin-left: 0;">Bonjour,</p>
<p style="font-size: 14px; mso-line-height-rule: exactly; line-height: 22px; margin-top: 0; margin-right: 0; margin-bottom: 16px; margin-left: 0;">Nous avons bien recu votre demande concernant vos donnees personnelles.</p> <p style="font-size: 14px; mso-line-height-rule: exactly; line-height: 22px; margin-top: 0; margin-right: 0; margin-bottom: 16px; margin-left: 0;">Nous avons bien recu votre demande concernant vos donnees personnelles.</p>
<p style="font-size: 14px; mso-line-height-rule: exactly; line-height: 22px; margin-top: 0; margin-right: 0; margin-bottom: 16px; margin-left: 0;">Apres verification, <strong>aucune donnee n'a ete trouvee</strong> correspondant a l'adresse IP indiquee dans nos systemes.</p> <p style="font-size: 14px; mso-line-height-rule: exactly; line-height: 22px; margin-top: 0; margin-right: 0; margin-bottom: 16px; margin-left: 0;">Apres verification, <strong>aucune donnee n'a ete trouvee</strong> correspondant a l'adresse IP indiquee dans nos systemes.</p>
<p style="font-size: 14px; mso-line-height-rule: exactly; line-height: 22px; margin-top: 0; margin-right: 0; margin-bottom: 16px; margin-left: 0;">Si vous pensez qu'il s'agit d'une erreur, n'hesitez pas a nous contacter a <a href="mailto:contact@e-cosplay.fr" style="color: #4338ca;">contact@e-cosplay.fr</a>.</p> <p style="font-size: 14px; mso-line-height-rule: exactly; line-height: 22px; margin-top: 0; margin-right: 0; margin-bottom: 16px; margin-left: 0;">Si vous pensez qu'il s'agit d'une erreur, n'hesitez pas a nous contacter a <a href="mailto:client@e-cosplay.fr" style="color: #4338ca;">client@e-cosplay.fr</a>.</p>
<p style="font-size: 14px; mso-line-height-rule: exactly; line-height: 22px; margin-top: 0; margin-right: 0; margin-bottom: 0; margin-left: 0;">Cordialement,<br><strong>Association E-Cosplay</strong></p> <p style="font-size: 14px; mso-line-height-rule: exactly; line-height: 22px; margin-top: 0; margin-right: 0; margin-bottom: 0; margin-left: 0;">Cordialement,<br><strong>Association E-Cosplay</strong></p>
{% endblock %} {% endblock %}

View File

@@ -20,7 +20,7 @@
</p> </p>
<p class="text-[10px] text-gray-400 uppercase tracking-widest"> <p class="text-[10px] text-gray-400 uppercase tracking-widest">
En cas de doute, contactez-nous : <a href="mailto:contact@e-cosplay.fr" class="text-[#fabf04] hover:underline">contact@e-cosplay.fr</a> En cas de doute, contactez-nous : <a href="mailto:client@e-cosplay.fr" class="text-[#fabf04] hover:underline">client@e-cosplay.fr</a>
</p> </p>
</div> </div>
</main> </main>

View File

@@ -21,7 +21,7 @@
<li><strong>Association E-Cosplay</strong></li> <li><strong>Association E-Cosplay</strong></li>
<li>RNA : W022006988 / SIREN : 943121517</li> <li>RNA : W022006988 / SIREN : 943121517</li>
<li>Siege social : 42 rue de Beautor, 02800 Beautor, France</li> <li>Siege social : 42 rue de Beautor, 02800 Beautor, France</li>
<li>Email : <a href="mailto:contact@e-cosplay.fr" class="text-indigo-800 underline hover:text-indigo-950">contact@e-cosplay.fr</a></li> <li>Email : <a href="mailto:client@e-cosplay.fr" class="text-indigo-800 underline hover:text-indigo-950">client@e-cosplay.fr</a></li>
<li>Site web : <a href="https://www.e-cosplay.fr" class="text-indigo-800 underline hover:text-indigo-950" target="_blank" rel="noopener">www.e-cosplay.fr</a></li> <li>Site web : <a href="https://www.e-cosplay.fr" class="text-indigo-800 underline hover:text-indigo-950" target="_blank" rel="noopener">www.e-cosplay.fr</a></li>
</ul> </ul>
</section> </section>
@@ -194,7 +194,7 @@
<section> <section>
<h2 class="text-xl font-bold uppercase mb-2">Article 16 - Resiliation et cloture de compte</h2> <h2 class="text-xl font-bold uppercase mb-2">Article 16 - Resiliation et cloture de compte</h2>
<p><strong>A l'initiative de l'utilisateur :</strong></p> <p><strong>A l'initiative de l'utilisateur :</strong></p>
<p class="mt-2">L'utilisateur peut demander la cloture de son compte en contactant la société a l'adresse <a href="mailto:contact@e-cosplay.fr" class="text-indigo-800 underline hover:text-indigo-950">contact@e-cosplay.fr</a>. La cloture du compte est soumise aux conditions suivantes :</p> <p class="mt-2">L'utilisateur peut demander la cloture de son compte en contactant la société a l'adresse <a href="mailto:client@e-cosplay.fr" class="text-indigo-800 underline hover:text-indigo-950">client@e-cosplay.fr</a>. La cloture du compte est soumise aux conditions suivantes :</p>
<ul class="list-disc pl-6 mt-2"> <ul class="list-disc pl-6 mt-2">
<li>Le compte ne peut etre cloture que si l'utilisateur est <strong>en regle</strong> vis-a-vis de la société (aucun impaye, aucune facture en cours, aucune obligation contractuelle en suspens)</li> <li>Le compte ne peut etre cloture que si l'utilisateur est <strong>en regle</strong> vis-a-vis de la société (aucun impaye, aucune facture en cours, aucune obligation contractuelle en suspens)</li>
<li>En cas d'impaye ou de litige en cours, la demande de cloture sera refusee jusqu'a la regularisation complete de la situation</li> <li>En cas d'impaye ou de litige en cours, la demande de cloture sera refusee jusqu'a la regularisation complete de la situation</li>
@@ -222,7 +222,7 @@
<h2 class="text-xl font-bold uppercase mb-2">Article 18 - Contact</h2> <h2 class="text-xl font-bold uppercase mb-2">Article 18 - Contact</h2>
<p>Pour toute question relative aux presentes CGU :</p> <p>Pour toute question relative aux presentes CGU :</p>
<ul class="list-disc pl-6 mt-2"> <ul class="list-disc pl-6 mt-2">
<li>Email : <a href="mailto:contact@e-cosplay.fr" class="text-indigo-800 underline hover:text-indigo-950">contact@e-cosplay.fr</a></li> <li>Email : <a href="mailto:client@e-cosplay.fr" class="text-indigo-800 underline hover:text-indigo-950">client@e-cosplay.fr</a></li>
<li>Telephone : 07 66 95 70 06</li> <li>Telephone : 07 66 95 70 06</li>
<li>Courrier : Association E-Cosplay, 42 rue de Beautor, 02800 Beautor, France</li> <li>Courrier : Association E-Cosplay, 42 rue de Beautor, 02800 Beautor, France</li>
</ul> </ul>

View File

@@ -143,7 +143,7 @@
<li>Suspendu les services concernes</li> <li>Suspendu les services concernes</li>
<li>Resilie le contrat conformement a l'article 14</li> <li>Resilie le contrat conformement a l'article 14</li>
</ul> </ul>
<p class="mt-2">Le client reste libre de regulariser sa situation a tout moment avant la transmission en recouvrement en contactant la société a l'adresse <a href="mailto:contact@e-cosplay.fr" class="text-indigo-800 underline hover:text-indigo-950">contact@e-cosplay.fr</a>.</p> <p class="mt-2">Le client reste libre de regulariser sa situation a tout moment avant la transmission en recouvrement en contactant la société a l'adresse <a href="mailto:client@e-cosplay.fr" class="text-indigo-800 underline hover:text-indigo-950">client@e-cosplay.fr</a>.</p>
</section> </section>
<section> <section>
@@ -175,7 +175,7 @@
<p class="mt-2"><strong>Pendant ce delai de validation</strong>, le client conserve la possibilite d'annuler sa demande :</p> <p class="mt-2"><strong>Pendant ce delai de validation</strong>, le client conserve la possibilite d'annuler sa demande :</p>
<ul class="list-disc pl-6 mt-2"> <ul class="list-disc pl-6 mt-2">
<li>Directement depuis son Espace Client sur la Plateforme, si son compte est deja actif</li> <li>Directement depuis son Espace Client sur la Plateforme, si son compte est deja actif</li>
<li>Par simple email a l'adresse <a href="mailto:contact@e-cosplay.fr" class="text-indigo-800 underline hover:text-indigo-950">contact@e-cosplay.fr</a></li> <li>Par simple email a l'adresse <a href="mailto:client@e-cosplay.fr" class="text-indigo-800 underline hover:text-indigo-950">client@e-cosplay.fr</a></li>
</ul> </ul>
<p class="mt-2">Une fois le contrat valide par la société, l'annulation n'est plus possible et les conditions de resiliation prevues a l'article 14 s'appliquent.</p> <p class="mt-2">Une fois le contrat valide par la société, l'annulation n'est plus possible et les conditions de resiliation prevues a l'article 14 s'appliquent.</p>
<p class="mt-2">La signature electronique a la meme valeur juridique qu'une signature manuscrite, conformement au reglement europeen eIDAS et a l'article 1367 du Code civil francais. Un certificat de signature et un journal d'audit sont generes pour chaque contrat signe.</p> <p class="mt-2">La signature electronique a la meme valeur juridique qu'une signature manuscrite, conformement au reglement europeen eIDAS et a l'article 1367 du Code civil francais. Un certificat de signature et un journal d'audit sont generes pour chaque contrat signe.</p>
@@ -228,7 +228,7 @@
<p>En cas de litige relatif a l'execution des presentes CGV, le client peut <strong>a tout moment</strong> contacter la Association E-Cosplay afin de rechercher une resolution amiable par le dialogue.</p> <p>En cas de litige relatif a l'execution des presentes CGV, le client peut <strong>a tout moment</strong> contacter la Association E-Cosplay afin de rechercher une resolution amiable par le dialogue.</p>
<p class="mt-2">Le client peut adresser sa reclamation :</p> <p class="mt-2">Le client peut adresser sa reclamation :</p>
<ul class="list-disc pl-6 mt-2"> <ul class="list-disc pl-6 mt-2">
<li>Par email : <a href="mailto:contact@e-cosplay.fr" class="text-indigo-800 underline hover:text-indigo-950">contact@e-cosplay.fr</a></li> <li>Par email : <a href="mailto:client@e-cosplay.fr" class="text-indigo-800 underline hover:text-indigo-950">client@e-cosplay.fr</a></li>
<li>Par courrier : Association E-Cosplay, 42 rue de Beautor, 02800 Beautor, France</li> <li>Par courrier : Association E-Cosplay, 42 rue de Beautor, 02800 Beautor, France</li>
<li>Via le support client accessible depuis l'Espace Client sur la Plateforme</li> <li>Via le support client accessible depuis l'Espace Client sur la Plateforme</li>
</ul> </ul>
@@ -246,7 +246,7 @@
<h2 class="text-xl font-bold uppercase mb-2">Article 18 - Contact</h2> <h2 class="text-xl font-bold uppercase mb-2">Article 18 - Contact</h2>
<p>Pour toute question relative aux presentes CGV :</p> <p>Pour toute question relative aux presentes CGV :</p>
<ul class="list-disc pl-6 mt-2"> <ul class="list-disc pl-6 mt-2">
<li>Email : <a href="mailto:contact@e-cosplay.fr" class="text-indigo-800 underline hover:text-indigo-950">contact@e-cosplay.fr</a></li> <li>Email : <a href="mailto:client@e-cosplay.fr" class="text-indigo-800 underline hover:text-indigo-950">client@e-cosplay.fr</a></li>
<li>Telephone : 07 66 95 70 06</li> <li>Telephone : 07 66 95 70 06</li>
<li>Courrier : Association E-Cosplay, 42 rue de Beautor, 02800 Beautor, France</li> <li>Courrier : Association E-Cosplay, 42 rue de Beautor, 02800 Beautor, France</li>
</ul> </ul>

View File

@@ -136,7 +136,7 @@
<h2 class="text-xl font-bold uppercase mb-2">9. Signalement et reclamations</h2> <h2 class="text-xl font-bold uppercase mb-2">9. Signalement et reclamations</h2>
<p>Pour toute question relative a la conformite de la société, ou pour signaler un manquement :</p> <p>Pour toute question relative a la conformite de la société, ou pour signaler un manquement :</p>
<ul class="list-disc pl-6 mt-2"> <ul class="list-disc pl-6 mt-2">
<li>Email : <a href="mailto:contact@e-cosplay.fr" class="text-indigo-800 underline hover:text-indigo-950">contact@e-cosplay.fr</a></li> <li>Email : <a href="mailto:client@e-cosplay.fr" class="text-indigo-800 underline hover:text-indigo-950">client@e-cosplay.fr</a></li>
<li>Courrier : Association E-Cosplay, 42 rue de Beautor, 02800 Beautor, France</li> <li>Courrier : Association E-Cosplay, 42 rue de Beautor, 02800 Beautor, France</li>
</ul> </ul>
<p class="mt-2">En cas de litige non resolu, vous pouvez saisir la CNIL pour les questions relatives aux donnees personnelles (<a href="https://www.cnil.fr" class="text-indigo-800 underline hover:text-indigo-950" target="_blank" rel="noopener">www.cnil.fr</a>) ou les tribunaux competents de Saint-Quentin (Aisne).</p> <p class="mt-2">En cas de litige non resolu, vous pouvez saisir la CNIL pour les questions relatives aux donnees personnelles (<a href="https://www.cnil.fr" class="text-indigo-800 underline hover:text-indigo-950" target="_blank" rel="noopener">www.cnil.fr</a>) ou les tribunaux competents de Saint-Quentin (Aisne).</p>

View File

@@ -70,7 +70,7 @@
<h2 class="text-xl font-bold uppercase mb-2">7. Delegue a la Protection des Donnees</h2> <h2 class="text-xl font-bold uppercase mb-2">7. Delegue a la Protection des Donnees</h2>
<p>Pour toute question relative aux cookies ou a vos donnees personnelles :</p> <p>Pour toute question relative aux cookies ou a vos donnees personnelles :</p>
<ul class="list-disc pl-6 mt-2"> <ul class="list-disc pl-6 mt-2">
<li>Email : <a href="mailto:contact@e-cosplay.fr" class="text-indigo-800 underline hover:text-indigo-950">contact@e-cosplay.fr</a></li> <li>Email : <a href="mailto:client@e-cosplay.fr" class="text-indigo-800 underline hover:text-indigo-950">client@e-cosplay.fr</a></li>
</ul> </ul>
</section> </section>

View File

@@ -68,7 +68,7 @@
<section> <section>
<h2 class="text-xl font-bold uppercase mb-2">7. Contact</h2> <h2 class="text-xl font-bold uppercase mb-2">7. Contact</h2>
<p>Pour toute question relative a l'hebergement : <a href="mailto:contact@e-cosplay.fr" class="text-indigo-800 underline hover:text-indigo-950">contact@e-cosplay.fr</a></p> <p>Pour toute question relative a l'hebergement : <a href="mailto:client@e-cosplay.fr" class="text-indigo-800 underline hover:text-indigo-950">client@e-cosplay.fr</a></p>
</section> </section>
<p class="text-sm opacity-70 italic">Derniere mise a jour : 02/04/2026</p> <p class="text-sm opacity-70 italic">Derniere mise a jour : 02/04/2026</p>

View File

@@ -18,7 +18,7 @@
<li>TVA intracommunautaire : FR05 943 121 517</li> <li>TVA intracommunautaire : FR05 943 121 517</li>
<li>Code NAF/APE : 93.29Z - Activites recreatives et de loisirs</li> <li>Code NAF/APE : 93.29Z - Activites recreatives et de loisirs</li>
<li>Siege social : 42 rue de Beautor, 02800 Beautor, France</li> <li>Siege social : 42 rue de Beautor, 02800 Beautor, France</li>
<li>Email : <a href="mailto:contact@e-cosplay.fr" class="text-indigo-800 underline hover:text-indigo-950">contact@e-cosplay.fr</a></li> <li>Email : <a href="mailto:client@e-cosplay.fr" class="text-indigo-800 underline hover:text-indigo-950">client@e-cosplay.fr</a></li>
<li>Telephone : 07 66 95 70 06</li> <li>Telephone : 07 66 95 70 06</li>
<li>Site web : <a href="https://www.e-cosplay.fr" class="text-indigo-800 underline hover:text-indigo-950" target="_blank" rel="noopener">www.e-cosplay.fr</a></li> <li>Site web : <a href="https://www.e-cosplay.fr" class="text-indigo-800 underline hover:text-indigo-950" target="_blank" rel="noopener">www.e-cosplay.fr</a></li>
</ul> </ul>
@@ -68,7 +68,7 @@
<section> <section>
<h2 class="text-xl font-bold uppercase mb-2">8. Contact</h2> <h2 class="text-xl font-bold uppercase mb-2">8. Contact</h2>
<p>Pour toute question relative aux presentes mentions legales, vous pouvez nous contacter a l'adresse : <a href="mailto:contact@e-cosplay.fr" class="text-indigo-800 underline hover:text-indigo-950">contact@e-cosplay.fr</a>.</p> <p>Pour toute question relative aux presentes mentions legales, vous pouvez nous contacter a l'adresse : <a href="mailto:client@e-cosplay.fr" class="text-indigo-800 underline hover:text-indigo-950">client@e-cosplay.fr</a>.</p>
</section> </section>
<p class="text-sm opacity-70 italic">Derniere mise a jour : 02/04/2026</p> <p class="text-sm opacity-70 italic">Derniere mise a jour : 02/04/2026</p>

View File

@@ -18,7 +18,7 @@
<li><strong>Association E-Cosplay</strong></li> <li><strong>Association E-Cosplay</strong></li>
<li>Siret : 943 121 517</li> <li>Siret : 943 121 517</li>
<li>42 rue de Beautor, 02800 Beautor, France</li> <li>42 rue de Beautor, 02800 Beautor, France</li>
<li>Email : <a href="mailto:contact@e-cosplay.fr" class="text-indigo-800 underline hover:text-indigo-950">contact@e-cosplay.fr</a></li> <li>Email : <a href="mailto:client@e-cosplay.fr" class="text-indigo-800 underline hover:text-indigo-950">client@e-cosplay.fr</a></li>
</ul> </ul>
</section> </section>

View File

@@ -476,7 +476,7 @@
<div class="glass p-4 mt-4" style="border-left: 3px solid #fabf04;"> <div class="glass p-4 mt-4" style="border-left: 3px solid #fabf04;">
<p class="text-sm font-bold mb-2" style="color: #fabf04;">Calendrier d'envoi des contrats</p> <p class="text-sm font-bold mb-2" style="color: #fabf04;">Calendrier d'envoi des contrats</p>
<p class="text-xs text-gray-600 mb-2">Les contrats de migration seront envoyes par email <strong>a compter du 2 mai 2026</strong>. Vous aurez <strong>jusqu'au 14 mai 2026</strong> pour repondre et signer votre contrat.</p> <p class="text-xs text-gray-600 mb-2">Les contrats de migration seront envoyes par email <strong>a compter du 2 mai 2026</strong>. Vous aurez <strong>jusqu'au 14 mai 2026</strong> pour repondre et signer votre contrat.</p>
<p class="text-xs text-gray-600">Si vous souhaitez signer votre contrat avant cette date, merci de contacter directement l'Association E-Cosplay a <a href="mailto:contact@e-cosplay.fr" class="font-bold" style="color: #fabf04;">contact@e-cosplay.fr</a></p> <p class="text-xs text-gray-600">Si vous souhaitez signer votre contrat avant cette date, merci de contacter directement l'Association E-Cosplay a <a href="mailto:client@e-cosplay.fr" class="font-bold" style="color: #fabf04;">client@e-cosplay.fr</a></p>
</div> </div>
<div class="glass p-4 mt-4" style="border-left: 3px solid #374151;"> <div class="glass p-4 mt-4" style="border-left: 3px solid #374151;">
@@ -621,12 +621,18 @@
</div> </div>
</div> </div>
{# En savoir plus #}
<div class="glass-heavy p-8 mb-8 text-center" style="border: 2px solid #fabf04;">
<p class="text-sm text-gray-600 mb-3">Si vous voulez en savoir plus sur notre association, rendez-vous sur :</p>
<a href="https://www.e-cosplay.fr" target="_blank" class="inline-block px-6 py-3 font-bold uppercase text-sm tracking-wider transition-all hover:opacity-90" style="background: #fabf04; color: #111;">www.e-cosplay.fr</a>
</div>
{# Contact #} {# Contact #}
<div class="glass-heavy p-8 text-center"> <div class="glass-heavy p-8 text-center">
<h2 class="text-lg font-bold uppercase tracking-wider mb-3">Une question ?</h2> <h2 class="text-lg font-bold uppercase tracking-wider mb-3">Une question ?</h2>
<p class="text-sm text-gray-600 mb-4">Notre equipe est a votre disposition pour repondre a toutes vos questions.</p> <p class="text-sm text-gray-600 mb-4">Notre equipe est a votre disposition pour repondre a toutes vos questions.</p>
<p class="text-sm"> <p class="text-sm">
<a href="mailto:contact@e-cosplay.fr" class="font-bold text-lg" style="color: #fabf04;">contact@e-cosplay.fr</a> <a href="mailto:client@e-cosplay.fr" class="font-bold text-lg" style="color: #fabf04;">client@e-cosplay.fr</a>
</p> </p>
<p class="text-xs text-gray-400 mt-2">Tel : 07 66 95 70 06</p> <p class="text-xs text-gray-400 mt-2">Tel : 07 66 95 70 06</p>
</div> </div>

View File

@@ -207,7 +207,7 @@
</div> </div>
<p class="text-center text-[10px] text-gray-400 uppercase tracking-widest"> <p class="text-center text-[10px] text-gray-400 uppercase tracking-widest">
Une question ? <a href="mailto:contact@e-cosplay.fr" class="text-[#fabf04] hover:underline">contact@e-cosplay.fr</a> Une question ? <a href="mailto:client@e-cosplay.fr" class="text-[#fabf04] hover:underline">client@e-cosplay.fr</a>
</p> </p>
{# Modal Stripe Payment #} {# Modal Stripe Payment #}
<div id="stripe-modal" class="hidden fixed inset-0 z-[100] flex items-center justify-center"> <div id="stripe-modal" class="hidden fixed inset-0 z-[100] flex items-center justify-center">

View File

@@ -94,7 +94,7 @@
</div> </div>
<p class="text-[10px] text-gray-400 uppercase tracking-widest"> <p class="text-[10px] text-gray-400 uppercase tracking-widest">
Une question ? <a href="mailto:contact@e-cosplay.fr" class="text-[#fabf04] hover:underline">contact@e-cosplay.fr</a> Une question ? <a href="mailto:client@e-cosplay.fr" class="text-[#fabf04] hover:underline">client@e-cosplay.fr</a>
</p> </p>
</div> </div>
</main> </main>

View File

@@ -75,7 +75,7 @@
</div> </div>
<p class="text-[10px] text-gray-400 uppercase tracking-widest mt-6"> <p class="text-[10px] text-gray-400 uppercase tracking-widest mt-6">
Une question ? <a href="mailto:contact@e-cosplay.fr" class="text-[#fabf04] hover:underline">contact@e-cosplay.fr</a> Une question ? <a href="mailto:client@e-cosplay.fr" class="text-[#fabf04] hover:underline">client@e-cosplay.fr</a>
</p> </p>
</div> </div>
</main> </main>

View File

@@ -65,7 +65,7 @@
{% block footer_contact %} {% block footer_contact %}
<div style="margin-top: 16px;"> <div style="margin-top: 16px;">
<p class="dpo"><strong>DPO</strong></p> <p class="dpo"><strong>DPO</strong></p>
<span class="contact-box">contact@e-cosplay.fr</span> <span class="contact-box">client@e-cosplay.fr</span>
</div> </div>
{% endblock %} {% endblock %}
@@ -78,7 +78,7 @@
<div style="margin-top: 16px; padding-top: 8px; border-top: 1px solid #ddd; font-size: 7px; color: #999; line-height: 1.6;"> <div style="margin-top: 16px; padding-top: 8px; border-top: 1px solid #ddd; font-size: 7px; color: #999; line-height: 1.6;">
{% block footer_legal %} {% block footer_legal %}
Association E-Cosplay &mdash; RNA W022006988 &mdash; SIREN 943121517<br> Association E-Cosplay &mdash; RNA W022006988 &mdash; SIREN 943121517<br>
42 rue de Beautor, 02800 Beautor, France &mdash; contact@e-cosplay.fr &mdash; 07 66 95 70 06<br> 42 rue de Beautor, 02800 Beautor, France &mdash; client@e-cosplay.fr &mdash; 07 66 95 70 06<br>
<a href="https://www.e-cosplay.fr" style="color: #999;">www.e-cosplay.fr</a> <a href="https://www.e-cosplay.fr" style="color: #999;">www.e-cosplay.fr</a>
{% endblock %} {% endblock %}
</div> </div>

View File

@@ -125,7 +125,7 @@
<section> <section>
<h2>Article 10 - Recouvrement</h2> <h2>Article 10 - Recouvrement</h2>
<p>Transmission en recouvrement 30 jours apres l'echeance. Frais integralement a la charge du client debiteur. Le client peut regulariser a tout moment avant la transmission en contactant contact@e-cosplay.fr.</p> <p>Transmission en recouvrement 30 jours apres l'echeance. Frais integralement a la charge du client debiteur. Le client peut regulariser a tout moment avant la transmission en contactant client@e-cosplay.fr.</p>
</section> </section>
<section> <section>
@@ -136,7 +136,7 @@
<section> <section>
<h2>Article 12 - Signature du contrat</h2> <h2>Article 12 - Signature du contrat</h2>
<p>Signature electronique via DocuSeal (signature.e-cosplay.fr). Validation par l'association sous 2 a 3 jours ouvres. Valeur juridique identique a une signature manuscrite (reglement eIDAS, art. 1367 du Code civil). Annulation possible avant validation par email a contact@e-cosplay.fr.</p> <p>Signature electronique via DocuSeal (signature.e-cosplay.fr). Validation par l'association sous 2 a 3 jours ouvres. Valeur juridique identique a une signature manuscrite (reglement eIDAS, art. 1367 du Code civil). Annulation possible avant validation par email a client@e-cosplay.fr.</p>
</section> </section>
<section> <section>
@@ -156,7 +156,7 @@
<section> <section>
<h2>Article 16 - Resolution amiable des litiges</h2> <h2>Article 16 - Resolution amiable des litiges</h2>
<p>Reclamation par email (contact@e-cosplay.fr), courrier (42 rue de Saint-Quentin, 02800 Beautor) ou support client. Accuse de reception sous 5 jours ouvres. Reglement amiable privilegie avant tout recours judiciaire.</p> <p>Reclamation par email (client@e-cosplay.fr), courrier (42 rue de Saint-Quentin, 02800 Beautor) ou support client. Accuse de reception sous 5 jours ouvres. Reglement amiable privilegie avant tout recours judiciaire.</p>
</section> </section>
<section> <section>
@@ -166,7 +166,7 @@
<section> <section>
<h2>Article 18 - Contact</h2> <h2>Article 18 - Contact</h2>
<p>Email : contact@e-cosplay.fr &mdash; Tel : 07 66 95 70 06 &mdash; Courrier : Association E-Cosplay, 42 rue de Saint-Quentin, 02800 Beautor, France</p> <p>Email : client@e-cosplay.fr &mdash; Tel : 07 66 95 70 06 &mdash; Courrier : Association E-Cosplay, 42 rue de Saint-Quentin, 02800 Beautor, France</p>
</section> </section>
<p style="font-size: 9px; opacity: 0.7; font-style: italic; margin-top: 12px;">Derniere mise a jour : 31/03/2026</p> <p style="font-size: 9px; opacity: 0.7; font-style: italic; margin-top: 12px;">Derniere mise a jour : 31/03/2026</p>

View File

@@ -49,7 +49,7 @@
<strong>Association E-Cosplay</strong><br> <strong>Association E-Cosplay</strong><br>
RNA : W022006988 — SIREN : 943121517<br> RNA : W022006988 — SIREN : 943121517<br>
42 rue de Beautor, 02800 Beautor, France<br> 42 rue de Beautor, 02800 Beautor, France<br>
contact@e-cosplay.fr client@e-cosplay.fr
</div> </div>
<div class="parties-cell"> <div class="parties-cell">
<span class="label">Le Revendeur</span> <span class="label">Le Revendeur</span>
@@ -207,7 +207,7 @@
<div class="footer"> <div class="footer">
Association E-Cosplay — RNA W022006988 — SIREN 943121517<br> Association E-Cosplay — RNA W022006988 — SIREN 943121517<br>
42 rue de Beautor, 02800 Beautor, France — contact@e-cosplay.fr — 07 66 95 70 06<br> 42 rue de Beautor, 02800 Beautor, France — client@e-cosplay.fr — 07 66 95 70 06<br>
<a href="https://www.e-cosplay.fr" style="color: #999;">www.e-cosplay.fr</a> <a href="https://www.e-cosplay.fr" style="color: #999;">www.e-cosplay.fr</a>
</div> </div>
</div> </div>

View File

@@ -8,7 +8,7 @@
<div class="text-green-600 text-4xl mb-4">&#10003;</div> <div class="text-green-600 text-4xl mb-4">&#10003;</div>
<h1 class="text-lg font-bold uppercase mb-2">Desabonnement confirme</h1> <h1 class="text-lg font-bold uppercase mb-2">Desabonnement confirme</h1>
<p class="text-sm text-gray-500">L'adresse <strong>{{ email }}</strong> ne recevra plus d'emails commerciaux de E-Cosplay.</p> <p class="text-sm text-gray-500">L'adresse <strong>{{ email }}</strong> ne recevra plus d'emails commerciaux de E-Cosplay.</p>
<p class="text-xs text-gray-400 mt-4">Pour vous reabonner, contactez <strong>contact@e-cosplay.fr</strong>.</p> <p class="text-xs text-gray-400 mt-4">Pour vous reabonner, contactez <strong>client@e-cosplay.fr</strong>.</p>
</div> </div>
</div> </div>
{% endblock %} {% endblock %}