27 lines
332 B
PHP
27 lines
332 B
PHP
<html>
|
|
|
|
|
|
<head>
|
|
<title>Access Denied</title>
|
|
</head>
|
|
|
|
<style>
|
|
* {
|
|
font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
|
|
}
|
|
</style>
|
|
|
|
<body>
|
|
|
|
|
|
<center>
|
|
<img src="images/accessdenied.png" style="margin-top:-40px; width:1000px; height:500px;">
|
|
<div><?php echo $_REQUEST['msg']; ?></div>
|
|
|
|
</center>
|
|
|
|
|
|
|
|
</body>
|
|
|
|
</html>
|