Redirecting you to the payment portal after 2 seconds. If you are not automatically redirected, click here.
// Total seconds to wait
var seconds = 3;
function countdown() {
seconds = seconds - 1;
if (seconds < 0) {
// Chnage your redirection link here
window.location = "https://portal.superlativerm.com/";
} else {
// Update remaining seconds
document.getElementById("countdown").innerHTML = seconds;
// Count down using javascript
window.setTimeout("countdown()", 1000);
}
}
// Run countdown function
countdown();