-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
wa.html
57 lines (56 loc) · 1.88 KB
/
wa.html
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
---
layout: null
---
<!DOCTYPE html>
<html lang="en">
<head>
<meta http-equiv="Refresh" content="1; url='https://wa.me/{{ site.author.whatsapp }}'" />
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<meta name="theme-color" content="#343a40" />
<meta
name="description"
content="WhatsApp - {{ site.author.whatsapp }}"
/>
<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.3.1/css/bootstrap.min.css" integrity="sha384-ggOyR0iXCbMQv3Xipma34MD+dH/1fQ784/j6cY/iJTQUOhcWr7x9JvoRxT2MZw1T" crossorigin="anonymous">
<title>WhatsApp - {{ site.author.name }}</title>
<style>
body{
background-color: #faf8ef;
}
</style>
</head>
<body>
<br>
<br>
<br>
<center>
<h3 class="align-items-center mt-2">WhatsApp<br>{{ site.author.name }}</h3>
<br>
<script>
var timeleft = 1;
var downloadTimer = setInterval(function(){
if(timeleft <= 0){
clearInterval(downloadTimer);
document.getElementById("tombolLanjut").style.display = "block";
document.getElementById("tombolCapt").style.display = "block";
} else {
<!-- document.getElementById("countdown").innerHTML = "Sedang mengalihkan dalam " + timeleft + " detik..."; -->
document.getElementById("countdown").innerHTML = "Sedang mengalihkan ke halaman tujuan...";
}
timeleft -= 1;
}, 1000);
</script>
<h4 class="align-items-center mt-2" align="center">
<p id="countdown">Redirecting...</p>
<p id="tombolCapt" style="display: none;!important;">Click button below if you are not redirected automatically.</p>
</h4>
<div id="tombolLanjut" class="mt-4 text-center mx-auto" style="max-width: 500px; display: none;!important;">
<a href="https://wa.me/{{ site.author.whatsapp }}"
class="btn btn-outline-dark btn-block btn-lg" role="button">
Go to WhatsApp
</a>
</div>
</center>
</body>
</html>