Files

311 lines
7.4 KiB
HTML
Raw Permalink Normal View History

2026-06-11 17:51:59 +02:00
<!DOCTYPE html>
<html lang="fr">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta name="robots" content="noindex, nofollow, noarchive, nosnippet">
<meta name="googlebot" content="noindex, nofollow">
2026-06-11 20:33:59 +02:00
2026-06-11 17:51:59 +02:00
<title>GSK | Accueil</title>
2026-06-11 20:33:59 +02:00
2026-06-11 17:51:59 +02:00
<link rel="icon" href="https://gsk.labbej27.fr/logo.jpeg" type="image/jpeg">
<link rel="shortcut icon" href="https://gsk.labbej27.fr/logo.jpeg" type="image/jpeg">
2026-06-11 20:33:59 +02:00
2026-06-11 17:51:59 +02:00
<style>
@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@400;500;700&display=swap');
2026-06-11 20:33:59 +02:00
2026-06-11 17:51:59 +02:00
:root {
--gsk-orange: #f36f21;
--gsk-dark: #1c2526;
}
2026-06-11 20:33:59 +02:00
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
2026-06-11 17:51:59 +02:00
body {
font-family: 'Roboto', sans-serif;
background-color: #f8f9fa;
color: #333;
line-height: 1.6;
}
2026-06-11 20:33:59 +02:00
2026-06-11 17:51:59 +02:00
header {
background: linear-gradient(135deg, var(--gsk-dark), #2a3a3d);
color: white;
padding: 1rem 0;
2026-06-11 20:33:59 +02:00
box-shadow: 0 4px 12px rgba(0,0,0,.2);
2026-06-11 17:51:59 +02:00
}
2026-06-11 20:33:59 +02:00
2026-06-11 17:51:59 +02:00
.header-content {
max-width: 1200px;
margin: 0 auto;
2026-06-11 20:33:59 +02:00
padding: 0 2rem;
2026-06-11 17:51:59 +02:00
display: flex;
2026-06-11 20:33:59 +02:00
justify-content: center;
2026-06-11 17:51:59 +02:00
align-items: center;
}
2026-06-11 20:33:59 +02:00
2026-06-11 17:51:59 +02:00
.logo img {
height: 65px;
}
2026-06-11 20:33:59 +02:00
2026-06-11 17:51:59 +02:00
.hero {
2026-06-11 20:33:59 +02:00
background:
linear-gradient(rgba(0,0,0,.65), rgba(0,0,0,.75)),
url('https://picsum.photos/id/1015/2000/800')
center/cover;
min-height: calc(100vh - 95px);
2026-06-11 17:51:59 +02:00
display: flex;
align-items: center;
justify-content: center;
text-align: center;
color: white;
padding: 2rem;
}
2026-06-11 20:33:59 +02:00
2026-06-11 17:51:59 +02:00
.hero-content {
2026-06-11 20:33:59 +02:00
width: 100%;
2026-06-11 17:51:59 +02:00
max-width: 1000px;
}
2026-06-11 20:33:59 +02:00
2026-06-11 17:51:59 +02:00
.hero h1 {
2026-06-11 20:33:59 +02:00
font-size: 3rem;
2026-06-11 17:51:59 +02:00
color: var(--gsk-orange);
2026-06-11 20:33:59 +02:00
margin-bottom: 1rem;
}
.subtitle {
font-size: 1.5rem;
margin-bottom: 2.5rem;
2026-06-11 17:51:59 +02:00
}
2026-06-11 20:33:59 +02:00
2026-06-11 17:51:59 +02:00
.choice-container {
display: flex;
justify-content: center;
2026-06-11 20:33:59 +02:00
gap: 2rem;
2026-06-11 17:51:59 +02:00
flex-wrap: wrap;
}
2026-06-11 20:33:59 +02:00
2026-06-11 17:51:59 +02:00
.choice-card {
background: white;
color: #333;
2026-06-11 20:33:59 +02:00
border-radius: 18px;
padding: 2rem;
2026-06-11 17:51:59 +02:00
width: 420px;
cursor: pointer;
2026-06-11 20:33:59 +02:00
border: 3px solid transparent;
box-shadow: 0 10px 30px rgba(0,0,0,.15);
transition: all .25s ease;
2026-06-11 17:51:59 +02:00
}
2026-06-11 20:33:59 +02:00
2026-06-11 17:51:59 +02:00
.choice-card:hover {
2026-06-11 20:33:59 +02:00
transform: translateY(-8px);
border-color: var(--gsk-orange);
box-shadow: 0 18px 35px rgba(243,111,33,.25);
2026-06-11 17:51:59 +02:00
}
2026-06-11 20:33:59 +02:00
.choice-card:active {
transform: scale(.98);
}
.icon {
2026-06-11 17:51:59 +02:00
display: block;
2026-06-11 20:33:59 +02:00
font-size: 4rem;
margin-bottom: 1rem;
2026-06-11 17:51:59 +02:00
}
2026-06-11 20:33:59 +02:00
2026-06-11 17:51:59 +02:00
.choice-card h2 {
color: var(--gsk-orange);
2026-06-11 20:33:59 +02:00
font-size: 1.8rem;
margin-bottom: .75rem;
2026-06-11 17:51:59 +02:00
line-height: 1.3;
}
2026-06-11 20:33:59 +02:00
.choice-card .lang {
display: block;
font-size: 1rem;
font-weight: 400;
color: #666;
margin-top: .3rem;
}
2026-06-11 17:51:59 +02:00
.choice-card p {
color: #555;
2026-06-11 20:33:59 +02:00
margin-bottom: 1.2rem;
2026-06-11 17:51:59 +02:00
}
2026-06-11 20:33:59 +02:00
.tap-message {
color: var(--gsk-orange);
font-weight: 700;
font-size: 1rem;
2026-06-11 17:51:59 +02:00
}
2026-06-11 20:33:59 +02:00
2026-06-11 17:51:59 +02:00
footer {
background: var(--gsk-dark);
color: #aaa;
text-align: center;
2026-06-11 20:33:59 +02:00
padding: 2rem;
2026-06-11 17:51:59 +02:00
}
2026-06-11 20:33:59 +02:00
footer a {
color: var(--gsk-orange);
text-decoration: none;
}
/* MOBILE */
2026-06-11 17:51:59 +02:00
@media (max-width: 768px) {
2026-06-11 20:33:59 +02:00
.header-content {
padding: 0 1rem;
}
.logo img {
height: 50px;
}
.hero {
min-height: auto;
padding: 1.5rem 1rem 2rem;
}
.hero h1 {
font-size: 2rem;
margin-bottom: .5rem;
}
.subtitle {
font-size: 1.15rem;
margin-bottom: 1.2rem;
}
.choice-container {
flex-direction: column;
gap: .8rem;
}
.choice-card {
width: 100%;
max-width: none;
padding: 1.25rem;
}
.icon {
font-size: 2.8rem;
margin-bottom: .5rem;
}
.choice-card h2 {
font-size: 1.3rem;
margin-bottom: .4rem;
}
.choice-card p {
display: none;
}
.tap-message {
font-size: .95rem;
}
2026-06-11 17:51:59 +02:00
}
</style>
</head>
2026-06-11 20:33:59 +02:00
2026-06-11 17:51:59 +02:00
<body>
2026-06-11 20:33:59 +02:00
<header>
<div class="header-content">
<div class="logo">
<img src="https://gsk.labbej27.fr/logo.jpeg" alt="GSK Logo">
2026-06-11 17:51:59 +02:00
</div>
2026-06-11 20:33:59 +02:00
</div>
</header>
<section class="hero">
<div class="hero-content">
<h1>Bienvenue chez GSK</h1>
<p class="subtitle">
Veuillez sélectionner votre catégorie
</p>
<div class="choice-container">
<div class="choice-card" onclick="goToPage('visiteur')">
<span class="icon">👩‍💼</span>
<h2>
Visiteur
<span class="lang">
Visitor / Visitante
</span>
</h2>
<p>
Accès aux règles de sécurité pour les visiteurs
</p>
<div class="tap-message">
👉 Appuyez pour continuer
2026-06-11 17:51:59 +02:00
</div>
2026-06-11 20:33:59 +02:00
</div>
<div class="choice-card" onclick="goToPage('livreur')">
<span class="icon">🚚</span>
<h2>
Livreurs / Transporteurs
<span class="lang">
Drivers / Conductores / Водители /
Водії / Kierowcy
</span>
</h2>
<p>
Accès aux consignes spécifiques pour les livreurs
</p>
2026-06-11 17:51:59 +02:00
2026-06-11 20:33:59 +02:00
<div class="tap-message">
👉 Appuyez pour continuer
2026-06-11 17:51:59 +02:00
</div>
</div>
2026-06-11 20:33:59 +02:00
2026-06-11 17:51:59 +02:00
</div>
2026-06-11 20:33:59 +02:00
</div>
</section>
<footer>
<p>&copy; 2026 GSK plc — Règles de Sécurité</p>
<p style="margin-top:8px;font-size:.95rem;">
Développé par LABBEJ27 pour Fiducial Évreux
</p>
<p style="margin-top:15px;font-size:.85rem;opacity:.75;">
Code source disponible sur :
<a href="https://labbej27.duckdns.org/labbej/gsk-accueil" target="_blank">
Gitea — gsk-accueil
</a>
</p>
</footer>
<script>
function goToPage(category) {
if (category === 'visiteur') {
window.location.href =
'https://gsk.labbej27.fr/visiteurs.html';
2026-06-11 17:51:59 +02:00
}
2026-06-11 20:33:59 +02:00
if (category === 'livreur') {
window.location.href =
'https://gsk.labbej27.fr/livreurs.html';
}
}
</script>
2026-06-11 17:51:59 +02:00
</body>
</html>