File: /home/lzgqnjwu/sites/sgt.com.ua/succes-bot-panel.html
<!DOCTYPE html>
<html lang="uk">
<head>
<link rel="icon" type="image/png" sizes="32x32" href="https://sgt.com.ua/wp-content/themes/smartGT/assets/img/favicon.ico">
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Оплата успішна | BOT-panel | SmartGT</title>
<link href="https://fonts.googleapis.com/css2?family=Montserrat:wght@400;600;700;900&display=swap" rel="stylesheet">
<style>
:root {
--main-green: #026336;
--mint: #C4D8CF;
}
*{
margin:0;
padding:0;
box-sizing:border-box;
}
body{
font-family: 'Montserrat', sans-serif;
height:100vh;
width:100%;
display:flex;
align-items:center;
justify-content:center;
background: linear-gradient(135deg,#C4D8CF 0%, #ffffff 100%);
}
.success-wrapper{
text-align:center;
background:#ffffff;
padding:60px 40px;
border-radius:40px;
box-shadow:0px 10px 40px rgba(2,99,54,0.2);
max-width:600px;
width:90%;
}
.logo{
max-width:140px;
margin-bottom:30px;
}
.success-title{
color:var(--main-green);
font-size:36px;
font-weight:900;
margin-bottom:20px;
}
.success-text{
color:#000;
font-size:20px;
font-weight:500;
}
.redirect-text{
margin-top:15px;
color:#026336;
font-size:14px;
}
.success-btn{
margin-top:40px;
padding:18px 40px;
background:var(--main-green);
color:#fff;
border:none;
border-radius:40px;
font-size:17px;
font-weight:700;
cursor:pointer;
transition:0.3s;
}
.success-btn:hover{
background:#000;
}
@media(max-width:768px){
.success-wrapper{
padding:40px 20px;
}
.success-title{
font-size:28px;
}
.success-text{
font-size:17px;
}
}
@media(max-width:480px){
.success-title{
font-size:24px;
}
.success-text{
font-size:16px;
}
}
</style>
<!-- Google tag (gtag.js) -->
<script async src="https://www.googletagmanager.com/gtag/js?id=G-Y3TBD1YBY2"></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag(){dataLayer.push(arguments);}
gtag('js', new Date());
gtag('config', 'G-Y3TBD1YBY2');
</script>
</head>
<body>
<div class="success-wrapper">
<img src="Smart_GT_logo_G.JPG" class="logo">
<h1 class="success-title">
Оплата успішно пройшла!
</h1>
<p class="success-text">
Перенаправляємо на реєстраційну форму
</p>
<p class="redirect-text">
Автоматичне перенаправлення через <span id="countdown">5</span> сек.
</p>
<button class="success-btn" onclick="goHome()">
Маякнути нам
</button>
</div>
<script>
let timeLeft = 5;
let countdown = document.getElementById("countdown");
let timer = setInterval(function(){
timeLeft--;
countdown.innerHTML = timeLeft;
if(timeLeft <= 0){
clearInterval(timer);
window.location.href = "https://forms.cloud.microsoft/e/bDiRrpU7Dm";
}
},1000);
function goHome(){
window.location.href = "https://t.me/SmartGT_bot";
}
</script>
</body>
</html>