Initial commit of base code

This commit is contained in:
2025-05-28 18:16:00 -04:00
commit 65cb6080de
22 changed files with 3852 additions and 0 deletions
+35
View File
@@ -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>