-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathaccess.php
More file actions
31 lines (30 loc) · 816 Bytes
/
access.php
File metadata and controls
31 lines (30 loc) · 816 Bytes
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
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<style type="text/css">
.nacs{
background:#999;
font-size:25px;
color:#F00;
margin-top:18%;
width:550px;
-webkit-border-radius:5px;
-moz-border-radius:5px;
border-radius:5px;
-moz-box-shadow: 10px 10px 5px #888888; /* Firefox 3.6 and earlier */
-webkit-box-shadow: 10px 10px 5px #888888; /* Safari */
box-shadow: 10px 10px 5px #888888;
padding:10px;
}
</style>
<title>No Access</title>
</head>
<body>
<div align="center">
<div class="nacs">
<h1 align="center"><?php echo isset($MSG)?$MSG:"You Have No Access" ?></h1>
</div>
</div>
</body>
</html>