website: subscription confirmation page (#7472)

Co-authored-by: Evgeny @ SimpleX Chat <259188159+evgeny-simplex@users.noreply.github.com>
This commit is contained in:
Evgeny
2026-09-08 12:14:26 +01:00
committed by GitHub
co-authored by Evgeny @ SimpleX Chat
parent d2b7b1ec81
commit 2caacecf6a
+77
View File
@@ -0,0 +1,77 @@
---
title: "Subscription confirmed - SimpleX Chat"
description: "Your subscription to SimpleX Chat updates is confirmed."
permalink: /subscribe/confirmed/
templateEngineOverride: njk
---
<!DOCTYPE html>
<html class="bg-[#F3FAFF] dark:bg-[#000832]" lang="en" dir="ltr">
<head>
<meta charset="UTF-8">
{% include "dark-mode.html" %}
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0, viewport-fit=cover">
<title>{{ title }}</title>
<meta name="description" content="{{ description }}"/>
<meta name="robots" content="noindex">
<meta name="Content-Type" content="text/html;charset=utf-8"/>
<link rel="icon" type="image/png" sizes="96x96" href="/img/favicon.ico"/>
<meta name="theme-color" content="#F3FAFF">
<link href="/css/tailwind.css" rel="stylesheet"/>
<link href="/css/style.css" rel="stylesheet"/>
<link rel="stylesheet" href="/css/design3-nav.css">
<style>
body {
display: flex;
flex-direction: column;
min-height: 100svh;
}
.thankyou {
flex: 1;
padding: 180px 24px 120px;
max-width: 760px;
margin: 0 auto;
text-align: center;
}
.thankyou h1 {
font-family: "GT-Walsheim", sans-serif;
font-weight: 400;
font-size: clamp(30px, 4vw, 44px);
line-height: 1.15;
letter-spacing: -0.025em;
color: #023789;
}
.dark .thankyou h1 { color: #ffffff; }
.thankyou p {
margin-top: 20px;
font-family: "Manrope", sans-serif;
font-weight: 300;
font-size: clamp(16px, 1.4vw, 19px);
line-height: 1.6;
color: #3f484b;
}
.dark .thankyou p { color: #dfeaff; }
</style>
<script>
if (window.parent !== window) window.parent.postMessage('mc:confirmed', '*');
</script>
</head>
<body class="bg-[#F3FAFF] dark:bg-[#000832]">
{% include "navbar.html" %}
<main class="thankyou">
<h1>Your subscription<br>is confirmed</h1>
<p>Thank you. We will send SimpleX Chat updates to this address.</p>
</main>
{% include "footer.html" %}
</body>
</html>