top of page
<div style="text-align:center;">
<h1>Thank you!</h1>
<p>Pendaftaran Anda sudah kami terima. Silahkan perhatikan panduan dan ketentuan Ibadah Tatap Muka Grow Center Church.</p>
<p><span id="timer"></span></p>
</div>
<script type="text/javascript">
var count = 5;
var redirect = "https://www.growcenter.church/ketentuan-ibadah-on-site";
function countDown(){
var timer = document.getElementById("timer");
if(count > 0){
count--;
timer.innerHTML = "This page will redirect in "+count+" seconds.";
setTimeout("countDown()", 1000);
}else{
window.location.href = redirect;
}
}
countDown();
</script>
bottom of page