blob: b2e8ed28f5dbd3a15ea8ef59981019e1d9c63a92 (
plain) (
blame)
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
|
<!DOCTYPE html>
<html>
<head>
<meta charset=UTF-8 />
<title>
TELETEKST APLIKACIJA - Nalagam ...
</title>
<style>
body {
background: black;
}
</style>
</head>
<body>
<h1></h1>
<script src=/redfox.js></script>
<script>
if (window.location.search == "?help") {
window.location.href = "/900/1";
} else if (window.location.search == "?404") {
window.location.href = "/900/404/index.html";
} else {
window.location.href = "/100/1";
}
// <meta http-equiv=refresh content=0;URL=/100/1 />
</script>
</body>
</html>
|