-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsuccess.html
More file actions
105 lines (96 loc) · 4.05 KB
/
Copy pathsuccess.html
File metadata and controls
105 lines (96 loc) · 4.05 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
<!DOCTYPE html>
<html lang="fr">
<head>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<title>Succès — Bluekiosktech</title>
<meta name="description" content="Confirmation d'envoi du message." />
<link rel="stylesheet" href="assets/css/main.css" />
<style>
.center { text-align:center }
.big { font-size: clamp(24px, 3vw, 36px); margin: 0 0 8px }
.muted { color: var(--muted) }
.actions { display:flex; gap:10px; justify-content:center; margin-top:18px }
.card { max-width: 740px; margin: 24px auto }
.hidden { display:none }
</style>
</head>
<body class="theme-light">
<header class="site-header">
<div class="container row between center">
<a class="logo" href="index.html">
<img src="assets/images/logo-blog.svg" alt="Bluekiosktech" />
<span class="sr-only">Bluekiosktech.blog</span>
</a>
<nav id="nav" class="nav">
<a href="index.html">Accueil</a>
<a href="blog.html">Articles</a>
<a href="about.html">À propos</a>
<a href="contact.html">Contact</a>
</nav>
<div class="actions">
<button id="themeToggle" aria-label="Basculer le thème">🌓</button>
<button id="menuToggle" class="only-mobile" aria-label="Menu" type="button">☰</button>
</div>
<div class="lang-switch lang--header" aria-label="Language switch">
<button id="lang-fr" class="is-active" aria-pressed="true">FR</button>
<button id="lang-en" aria-pressed="false">EN</button>
</div>
</div>
</header>
<main class="container">
<section class="card center">
<!-- FR -->
<div id="block-fr">
<h1 class="big">✅ Merci !</h1>
<p>Votre message a bien été envoyé. Nous revenons vers vous très vite.</p>
<p class="muted">Pensez à vérifier votre dossier <em>Courrier indésirable</em> si vous ne voyez pas notre réponse.</p>
<div class="actions">
<a class="btn primary" href="index.html">← Retour à l’accueil</a>
<a class="btn ghost" href="contact.html">Envoyer un autre message</a>
</div>
</div>
<!-- EN -->
<div id="block-en" class="hidden">
<h1 class="big">✅ Thank you!</h1>
<p>Your message has been sent. We’ll get back to you shortly.</p>
<p class="muted">If you don’t see our reply, please check your <em>Spam/Junk</em> folder.</p>
<div class="actions">
<a class="btn primary" href="index.html">← Back to Home</a>
<a class="btn ghost" href="contact.html">Send another message</a>
</div>
</div>
</section>
</main>
<footer class="site-footer">
<div class="container row between">
<p>© <span id="year"></span> Bluekiosktech. Tous droits réservés.</p>
<p><a href="privacy.html">Politique de confidentialité</a></p>
</div>
</footer>
<!-- JS (vos scripts habituels) -->
<script src="assets/js/i18n.js"></script>
<script src="assets/js/main.js"></script>
<!-- Mini script de langue -->
<script>
(function () {
try {
var lang = (localStorage.getItem('lang') === 'en') ? 'en' : 'fr';
document.getElementById('block-fr').classList.toggle('hidden', lang !== 'fr');
document.getElementById('block-en').classList.toggle('hidden', lang !== 'en');
// boutons d’en-tête
var fr = document.getElementById('lang-fr');
var en = document.getElementById('lang-en');
if (fr && en) {
fr.classList.toggle('is-active', lang === 'fr');
en.classList.toggle('is-active', lang === 'en');
fr.onclick = function(){ localStorage.setItem('lang','fr'); location.reload(); };
en.onclick = function(){ localStorage.setItem('lang','en'); location.reload(); };
}
} catch(_) {}
// année
var y = document.getElementById('year'); if (y) y.textContent = new Date().getFullYear();
})();
</script>
</body>
</html>