XenForo ŞABLON Xenforo Html Bakım Modu

Puan 0
Çözümler 0
Katılım
3 Kasım 2025
Mesajlar
67
Tepkime puanı
2
Konum
Çekim Paylaş
Web sitesi
cekimpaylas.xyz
xx doğrulanmış bir kullanıcıdır.
AdminCP > Kurulumlar > Seçenekler > Forumu Aç/Kapat

Bakım mesajı yazan yere alttaki kodu kendinize göre düzenleyerek yapıştırabilirsiniz içerisinde ki süreden de bakım süresi ayarlanabilir

1763590760854.webp

Kod:
<!DOCTYPE html>
<html lang="tr">
<head>
<meta charset="UTF-8">
<title>siteadiniz - Bakım Modu</title>
<style>
body {
font-family: sans-serif;
text-align: center;
margin-top: 20%;
color: #000;
}
h1 {
font-size: 24px;
margin-bottom: 10px;
}
p {
font-size: 16px;
margin-bottom: 20px;
}
#countdown {
font-size: 18px;
font-weight: bold;
margin-bottom: 20px;
}
.footer {
font-size: 14px;
color: #666;
margin-top: 30px;
}
</style>
</head>
<body>
<h1>Çekim Paylaş Bahis Forum - Bakım Modu</h1>
<p>Sizlere daha iyi bir hizmet vermek için çalışıyoruz, desteğiniz için teşekkürler.</p>
<div id="countdown">Yükleniyor...</div>
<div class="footer">
© 2025 siteadiniz. Tüm hakları saklıdır.
</div>
<script>
const endDate = new Date();
endDate.setDate(endDate.getDate() + 7); // 7 gün bakım süresi
function updateCountdown() {
const now = new Date().getTime();
const distance = endDate - now;
if (distance <= 0) {
document.getElementById("countdown").innerHTML = "Bakım tamamlandı!";
return;
}
const days = Math.floor(distance / (1000 * 60 * 60 * 24));
const hours = Math.floor((distance % (1000 * 60 * 60 * 24)) / (1000 * 60 * 60));
const minutes = Math.floor((distance % (1000 * 60 * 60)) / (1000 * 60));
const seconds = Math.floor((distance % (1000 * 60)) / 1000);
document.getElementById("countdown").innerHTML =
`Kalan Süre: ${days} gün ${hours} saat ${minutes} dakika ${seconds} saniye`;
}
setInterval(updateCountdown, 1000);
updateCountdown();
</script>
</body>
</html>
 
Geri
Üst