0
0
This repository has been archived on 2020-11-15. You can view files and clone it, but cannot push or open issues or pull requests.
OpenShorte.old/includes/redirect.html

23 lines
767 B
HTML
Raw Normal View History

<!DOCTYPE html>
<html>
<head>
<title id="title">Redirect in 5 seconds</title>
</head>
<body>
<center>
<h1 id="body-timeout">You will be redirected to ... in 5</h1>
</center>
<script>
var seconds = 5;
function update_timeout () {
document.getElementById("title").innerHTML = "Redirect in "+seconds+" seconds";
document.getElementById("body-timeout").innerHTML = "You will be redirected to ... in "+seconds;
if (seconds == 0) {
window.location.href = my_location;
}
}
setInterval (function() {update_timeout(); seconds = seconds - 1;}, 1000);
</script>
</body>
</html>