-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdisabled_cookie.php
More file actions
64 lines (45 loc) · 1.23 KB
/
disabled_cookie.php
File metadata and controls
64 lines (45 loc) · 1.23 KB
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
<!doctype html>
<html>
<head>
<?php
if (isset($_SERVER["HTTP_COOKIE"])) {
header('Location:./');
exit();
}
?>
<meta charset="utf-8">
<title>Error</title>
<noscript><p style="color: #ffffff; background-color: #e51a31; margin: 0; padding: 0 0 0 5px; position: fixed; width: 100%;">Javascript is not supported by your browser, or is disabled. Please turn it on.</p><br/></noscript>
<script type="text/javascript" src="jQuery/jquery-1.11.3.js"></script>
<script type="text/javascript" src="JS/myScript.js"></script>
<link href="./CSS/style.css" rel="stylesheet" type="text/css">
</head>
<body>
<div class="container">
<?php
require "header.php";
//require "main_menu.php";
?>
<article class="content">
<h1>Error</h1>
<section>
<p>Enable cookies to navigate in this web site!</p>
</section>
<!-- end .content -->
</article>
<footer>
<p>Spare time activities</p>
<address>
Address
</address>
</footer>
<!-- end .container -->
<script>
resizePage();
$(window).resize(function () {
resizePage();
});
</script>
</div>
</body>
</html>