Files
Serreau Jovann b7a96e76d0 ```
 feat(security): [FR] Améliore la gestion des erreurs et la sécurité de l'intranet.
```
2026-01-19 11:20:16 +01:00

71 lines
3.9 KiB
Twig

<!DOCTYPE html>
<html lang="fr">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Erreur Service - Siteconseil</title>
{{ vite_asset('error.js')}}
</head>
<body class="bg-[#0f172a] text-slate-200 font-sans min-h-screen flex items-center justify-center overflow-hidden">
<div class="absolute inset-0 overflow-hidden pointer-events-none">
<div class="absolute -top-[10%] -left-[10%] w-[50%] h-[50%] bg-red-600/5 rounded-full blur-[120px]"></div>
<div class="absolute -bottom-[10%] -right-[10%] w-[50%] h-[50%] bg-orange-600/5 rounded-full blur-[120px]"></div>
</div>
<div class="relative z-10 w-full max-w-lg p-6 mx-auto">
<div class="backdrop-blur-3xl bg-slate-900/60 border border-white/10 rounded-[3rem] p-10 shadow-2xl text-center">
<div class="flex justify-center mb-8">
<div class="relative">
<div class="absolute inset-0 bg-red-500 blur-2xl opacity-20 animate-pulse"></div>
<div class="relative p-6 bg-red-500/10 rounded-3xl border border-red-500/20">
<svg class="w-12 h-12 text-red-500" fill="none" stroke="currentColor" viewBox="0 0 24 24">
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M10 14l2-2m0 0l2-2m-2 2l-2-2m2 2l2 2m7-2a9 9 0 11-18 0 9 9 0 0118 0z"/>
</svg>
</div>
</div>
</div>
<h1 class="text-2xl font-black text-white mb-2 uppercase tracking-tight">
Service <span class="text-red-500">Indisponible</span>
</h1>
<div class="inline-flex items-center px-3 py-1 rounded-full bg-red-500/10 border border-red-500/20 mb-6">
<span class="w-2 h-2 rounded-full bg-red-500 animate-ping mr-2"></span>
<span class="text-[10px] font-bold text-red-400 uppercase tracking-widest">
{{ message.service }} : {{ message.status|upper }}
</span>
</div>
<p class="text-slate-400 text-sm leading-relaxed mb-10">
Une interruption technique affecte actuellement le module de <strong>{{ message.service }}</strong>.
L'accès à l'intranet est suspendu par mesure de sécurité jusqu'au rétablissement du service.
</p>
<div class="grid grid-cols-1 gap-4 text-left">
<div class="p-4 rounded-2xl bg-white/5 border border-white/5">
<p class="text-[9px] text-slate-500 font-black uppercase tracking-widest mb-3">Support Technique Siteconseil</p>
<div class="flex flex-col space-y-3">
<a href="mailto:s.com@siteconseil.fr" class="text-sm font-semibold text-white hover:text-blue-400 transition-colors flex items-center">
<svg class="w-4 h-4 mr-2" fill="none" stroke="currentColor" viewBox="0 0 24 24"><path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M3 8l7.89 5.26a2 2 0 002.22 0L21 8M5 19h14a2 2 0 002-2V7a2 2 0 00-2-2H5a2 2 0 00-2 2v10a2 2 0 002 2z"/></svg>
s.com@siteconseil.fr
</a>
<a href="tel:0323056243" class="text-sm font-semibold text-white hover:text-green-400 transition-colors flex items-center">
<svg class="w-4 h-4 mr-2" fill="none" stroke="currentColor" viewBox="0 0 24 24"><path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M3 5a2 2 0 012-2h3.28a1 1 0 01.948.684l1.498 4.493a1 1 0 01-.502 1.21l-2.257 1.13a11.042 11.042 0 005.516 5.516l1.13-2.257a1 1 0 011.21-.502l4.493 1.498a1 1 0 01.684.949V19a2 2 0 01-2 2h-1C9.716 21 3 14.284 3 6V5z"/></svg>
03 23 05 62 43
</a>
</div>
</div>
</div>
<div class="mt-8">
<p class="text-[9px] text-slate-600 uppercase tracking-[0.4em] font-black italic">Siteconseil Intranet</p>
</div>
</div>
</div>
</body>
</html>