first commit

This commit is contained in:
Jimmy Labbé
2026-06-11 17:51:59 +02:00
commit db1384375b
+210
View File
@@ -0,0 +1,210 @@
<!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">
<title>GSK | Accueil</title>
<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">
<style>
@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@400;500;700&display=swap');
:root {
--gsk-orange: #f36f21;
--gsk-dark: #1c2526;
}
* { margin: 0; padding: 0; box-sizing: border-box; }
body {
font-family: 'Roboto', sans-serif;
background-color: #f8f9fa;
color: #333;
line-height: 1.6;
}
header {
background: linear-gradient(135deg, var(--gsk-dark), #2a3a3d);
color: white;
padding: 1rem 0;
box-shadow: 0 4px 12px rgba(0,0,0,0.2);
}
.header-content {
max-width: 1200px;
margin: 0 auto;
display: flex;
align-items: center;
justify-content: space-between;
padding: 0 2rem;
}
.logo img {
height: 65px;
}
.hero {
background: linear-gradient(rgba(0,0,0,0.65), rgba(0,0,0,0.75)), url('https://picsum.photos/id/1015/2000/800') center/cover;
min-height: 85vh;
display: flex;
align-items: center;
justify-content: center;
text-align: center;
color: white;
padding: 2rem;
}
.hero-content {
max-width: 1000px;
}
.hero h1 {
font-size: 3.2rem;
color: var(--gsk-orange);
margin-bottom: 1.5rem;
}
.choice-container {
display: flex;
gap: 3rem;
justify-content: center;
flex-wrap: wrap;
margin-top: 2.5rem;
}
.choice-card {
background: white;
color: #333;
border-radius: 16px;
padding: 3rem 2.5rem;
width: 420px;
box-shadow: 0 10px 30px rgba(0,0,0,0.15);
transition: all 0.3s ease;
cursor: pointer;
text-align: center;
}
.choice-card:hover {
transform: translateY(-15px);
box-shadow: 0 20px 40px rgba(243, 111, 33, 0.3);
}
.choice-card .icon {
font-size: 5.5rem;
margin-bottom: 1.5rem;
display: block;
}
.choice-card h2 {
color: var(--gsk-orange);
font-size: 2rem;
margin-bottom: 1rem;
line-height: 1.3;
}
.choice-card p {
font-size: 1.15rem;
margin-bottom: 2rem;
color: #555;
}
.btn-continuer {
background: var(--gsk-orange);
color: white;
border: none;
padding: 14px 40px;
border-radius: 50px;
font-size: 1.15rem;
font-weight: 500;
cursor: pointer;
transition: all 0.3s;
}
.btn-continuer:hover {
background: #e05e1c;
transform: scale(1.05);
}
footer {
background: var(--gsk-dark);
color: #aaa;
text-align: center;
padding: 2.5rem;
margin-top: 4rem;
}
@media (max-width: 768px) {
.hero h1 { font-size: 2.5rem; }
.choice-container { gap: 2rem; }
.choice-card { width: 100%; max-width: 380px; }
}
</style>
</head>
<body>
<header>
<div class="header-content">
<div class="logo">
<img src="https://gsk.labbej27.fr/logo.jpeg" alt="GSK Logo">
</div>
</div>
</header>
<section class="hero">
<div class="hero-content">
<h1>Bienvenue chez GSK</h1>
<p style="font-size: 1.65rem; margin-bottom: 3rem;">Veuillez sélectionner votre catégorie :</p>
<div class="choice-container">
<!-- Visiteur - 3 langues -->
<div class="choice-card" onclick="goToPage('visiteur')">
<span class="icon">👩‍💼</span>
<h2>Visiteur<br>
<span style="font-size: 1.1rem; font-weight: 400;">Visitor / Visitante</span>
</h2>
<p>Accès aux règles de sécurité pour les visiteurs</p>
<button class="btn-continuer">Continuer →</button>
</div>
<!-- Livreurs - 6 langues -->
<div class="choice-card" onclick="goToPage('livreur')">
<span class="icon">🚚</span>
<h2>Livreurs / Transporteurs<br>
<span style="font-size: 1.05rem; font-weight: 400;">
Drivers / Conductores / Водители / Водії / Kierowcy
</span>
</h2>
<p>Accès aux consignes spécifiques pour les livreurs</p>
<button class="btn-continuer">Continuer →</button>
</div>
</div>
</div>
</section>
<footer>
<p>&copy; 2026 GSK plc — Règles de Sécurités</p>
<p style="margin-top: 8px; font-size: 0.95rem;">Développé par LABBEJ27 pour Fiducial Évreux</p>
<p style="margin-top: 15px; font-size: 0.85rem; opacity: 0.75;">
Code source disponible sur :
<a href="https://labbej27.duckdns.org/labbej/gsk-securite"
target="_blank"
style="color: #f36f21;">
Gitea — gsk-securite
</a>
</p>
</footer>
<script>
function goToPage(category) {
if (category === 'visiteur') {
window.location.href = 'https://gsk.labbej27.fr/visiteurs.html';
} else if (category === 'livreur') {
window.location.href = 'https://gsk.labbej27.fr/livreurs.html';
}
}
</script>
</body>
</html>