40 lines
1.8 KiB
HTML
40 lines
1.8 KiB
HTML
<!DOCTYPE html>
|
|
<html lang="{{ lang.code() }}">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
<title>{{ t.nav_title }} — {{ t.landing_thank_you_title }}</title>
|
|
<style>
|
|
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
|
|
body {
|
|
font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, sans-serif;
|
|
color: #1a1a2e; background: linear-gradient(170deg, #f0eeff 0%, #fff 60%);
|
|
min-height: 100vh; display: flex; align-items: center; justify-content: center;
|
|
}
|
|
.card {
|
|
text-align: center; max-width: 480px; padding: 3rem 2rem;
|
|
background: #fff; border-radius: 20px;
|
|
box-shadow: 0 8px 40px rgba(108,99,255,0.1);
|
|
border: 1px solid #e8e6ff; margin: 1rem;
|
|
}
|
|
.icon { font-size: 4rem; margin-bottom: 1rem; display: block; }
|
|
h1 { font-size: 1.8rem; font-weight: 800; margin-bottom: 0.75rem; }
|
|
p { color: #555; font-size: 1.05rem; margin-bottom: 2rem; line-height: 1.6; }
|
|
.back-link {
|
|
display: inline-block; padding: 0.75rem 2rem; border-radius: 12px;
|
|
background: #6c63ff; color: #fff; font-weight: 700; font-size: 1rem;
|
|
text-decoration: none; transition: background 0.2s, transform 0.2s;
|
|
}
|
|
.back-link:hover { background: #5a52d5; transform: translateY(-1px); }
|
|
</style>
|
|
</head>
|
|
<body>
|
|
<div class="card">
|
|
<span class="icon" role="img" aria-label="check">✅</span>
|
|
<h1>{{ t.landing_thank_you_title }}</h1>
|
|
<p>{{ t.landing_thank_you_text }}</p>
|
|
<a href="/?lang={{ lang.code() }}" class="back-link">{{ t.landing_thank_you_back }}</a>
|
|
</div>
|
|
</body>
|
|
</html>
|