36 lines
446 B
HTML
36 lines
446 B
HTML
<!DOCTYPE html>
|
|
|
|
<html>
|
|
|
|
<head>
|
|
<title>Success</title>
|
|
|
|
<style>
|
|
span.count {
|
|
display: inline-block;
|
|
}
|
|
</style>
|
|
|
|
<script>
|
|
var count = 15;
|
|
setInterval( function () {
|
|
var counter = document.getElementById("count");
|
|
count--;
|
|
counter.innerText= count;
|
|
if (count <= 0) {
|
|
window.location = "index.html";
|
|
}
|
|
}, 1000);
|
|
</script>
|
|
|
|
</head>
|
|
<body>
|
|
|
|
<p>Success</p>
|
|
|
|
<p>Redirecting in <span id="count">15</span>...</p>
|
|
|
|
</body>
|
|
|
|
</html>
|