Initial commit of base code
This commit is contained in:
@@ -0,0 +1,35 @@
|
||||
<!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>
|
||||
Reference in New Issue
Block a user