-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path403Error.html
More file actions
37 lines (37 loc) · 1.05 KB
/
Copy path403Error.html
File metadata and controls
37 lines (37 loc) · 1.05 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
<!DOCTYPE html>
<html>
<head>
<title>403 Error | Erro 403</title>
<meta charset="UTF-8">
<link rel="icon" href="resources\HTML5.png"/>
<script id="BannerRemover">window.addEventListener("load",function(){document.body.removeChild(document.getElementsByTagName("div")[document.getElementsByTagName("div").length-1]);document.head.removeChild(document.getElementById("BannerRemover"));});</script>
<script type="text/javascript" src="js/JSTools.js"></script>
<style>
* {
text-align: center;
}
body {
background-color: #d7d7d7;
}
</style>
</head>
<body>
<h1>403 Error | Erro 403</h1>
<h3>Forbidden | Proibido</h3>
<p>Click on this button to back | Clique neste botão para voltar:</p>
<button id="backToIndex" onclick="backToIndex();">Back | Voltar</button>
<p id="count">10</p>
<script>
var count = 10;
setTimeout(next, 1000);
function next() {
count--;
element("count").innerHTML = count;
if (count == 0) {
backToIndex();
}
setTimeout(next,1000);
}
</script>
</body>
</html>