17 lines
317 B
PHP
17 lines
317 B
PHP
|
<?php
|
||
|
if(!defined('SAFE')) {
|
||
|
$page = <<<CANTTOUCH
|
||
|
<html>
|
||
|
<head>
|
||
|
|
||
|
</head>
|
||
|
|
||
|
<body style="padding:0px; margin:0px; background-color: #425b5c;">
|
||
|
<center><img src="../../Images/General/PerryCantTouch2.png" /></center>
|
||
|
</body>
|
||
|
</html>
|
||
|
CANTTOUCH;
|
||
|
|
||
|
die($page);
|
||
|
}
|
||
|
?>
|