Files
webkeyboard/html/success.html
T
2025-05-28 18:16:00 -04:00

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>