-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathinter.php
executable file
·65 lines (65 loc) · 1.16 KB
/
inter.php
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
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
<?php
$page=str_replace("[","&",$_GET["page"]);
?>
<html>
<head>
<title>Page Blocked</title>
<style type="text/css">
body
{
background-color: #DCDCDC;
margin: 0 auto;
}
h1
{
position:absolute;
top: 5%;
text-align:center;
width:95%;
color:black;
font-size:2.0em;
}
#link
{
position:absolute;
top: 30%;
width:95%;
text-align:center;
margin: 0 auto;
}
#link img
{
border:0px;
width: 20%;
height: 20%;
}
#link a
{
color: black;
font-size: 2.0em;
text-decoration:none;
}
#text
{
position:absolute;
bottom: 1%;
text-align:center;
width:95%;
border-top:1px solid #808080;
color: #808080;
font-size:0.8em;
}
</style>
</head>
<body>
<h1>Weiter zur Anmeldung</h1>
<div id="link">
<a href="<?php echo $page;?>"><img src="unblock.png" alt="Unblock"/></a>
</div>
<div id="text">
The page: <?php echo $page;?> has been blocked because it requires a Password.
<br/>
Press the Button to redirect to the site.
</div>
</body>
</html>