Redirecting you to the payment portal after 8 seconds. If you are not automatically redirected, click here.
// Total seconds to wait
var seconds = 8;
function countdown() {
seconds = seconds – 1;
if (seconds < 0) {
// Chnage your redirection link here
window.location = "https://nca.totalcollectr.io/users/login";
} else {
// Update remaining seconds
document.getElementById("countdown").innerHTML = seconds;
// Count down using javascript
window.setTimeout("countdown()", 800);
}
}
// Run countdown function
countdown();
