Files
crm_ecosplay/templates/external_redirect.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

48 lines
2.7 KiB
Twig

{% extends 'base.html.twig' %}
{% block title %}Redirection externe - CRM SITECONSEIL{% endblock %}
{% block header %}
<header class="sticky top-0 z-50 bg-white border-b-4 border-gray-900">
<div class="flex justify-center items-center h-20">
<a href="{{ path('app_home') }}" aria-label="CRM SITECONSEIL - Accueil">
<img class="h-12 md:h-16 w-auto" src="{{ 'logo_facture.png' | imagine_filter('logo') }}" alt="CRM SITECONSEIL" loading="eager">
</a>
</div>
</header>
{% endblock %}
{% block body %}
<div class="flex items-center justify-center min-h-[calc(100vh-5rem)] px-4">
<div class="w-full max-w-md">
<div class="border-4 border-gray-900 bg-white p-8 shadow-[8px_8px_0px_rgba(0,0,0,1)] text-center">
<div class="mb-4">
<svg class="w-12 h-12 mx-auto text-yellow-500" fill="none" stroke="currentColor" viewBox="0 0 24 24"><path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M12 9v2m0 4h.01m-6.938 4h13.856c1.54 0 2.502-1.667 1.732-2.5L13.732 4c-.77-.833-1.964-.833-2.732 0L4.082 16.5c-.77.833.192 2.5 1.732 2.5z"/></svg>
</div>
<h1 class="text-xl font-black uppercase mb-2">Redirection externe</h1>
<p class="text-sm text-gray-600 mb-4">Vous etes sur le point de quitter CRM SITECONSEIL pour un site externe.</p>
{% if url %}
<div class="border-2 border-gray-200 bg-gray-50 p-3 mb-6 break-all">
<p class="text-xs font-mono text-gray-500">{{ url }}</p>
</div>
<div class="flex flex-col gap-3">
<a href="{{ url }}" rel="noopener noreferrer" class="w-full px-6 py-3 border-2 border-gray-900 bg-[#fabf04] text-gray-900 font-black uppercase tracking-widest text-sm hover:bg-yellow-500 transition-all shadow-[4px_4px_0px_rgba(0,0,0,1)] hover:shadow-[2px_2px_0px_rgba(0,0,0,1)] active:shadow-none active:translate-x-1 active:translate-y-1 text-center">
Continuer
</a>
<a href="{{ path('app_home') }}" class="text-xs font-bold text-gray-500 hover:text-indigo-600 transition-colors">
Retour a l'accueil
</a>
</div>
{% else %}
<p class="text-sm text-red-600 font-bold mb-4">Aucune URL de redirection fournie.</p>
<a href="{{ path('app_home') }}" class="inline-block px-6 py-3 border-2 border-gray-900 bg-[#fabf04] font-black uppercase text-sm tracking-widest hover:bg-yellow-500 transition-all">
Retour a l'accueil
</a>
{% endif %}
</div>
</div>
</div>
{% endblock %}