-
Notifications
You must be signed in to change notification settings - Fork 0
/
error.php
74 lines (51 loc) · 1.66 KB
/
error.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
66
67
68
69
70
71
72
73
74
<?php
include 'common.php';
?>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html lang="en">
<head>
<?php include_once("header_include.php"); ?>
<?php include_once("google_analytics.php"); ?>
<script type="text/javascript">
/* jQuery Methods */
$(function() {
/* feedback_link */
$(document).ready(function(){
$("#feedback_link").click(function(){
$("#input_panel").slideToggle(400);
})
});
});
</script>
<title>LetsPlayGlobalGames - Error</title>
</head>
<body onLoad="main()">
<div id="body_container">
<div id="header_container">
<?php include("header.php"); ?>
</div>
<div id="main_wrapper" class="error_page">
<div id="inner" align="center" \>
<h2 id="error_header" class="page_header">Error</h2>
<p id="error_page_text">
Unfortunately, we've encountered an error - We'll work to address
the issue as soon as possible, however Sam from the office has
decided to bring her dog to work today leading to a general lack
of interest from our developers... this may take some time. Can
you really blame them?
</p>
</div>
</div><!--main_wrapper-->
<div id="last_updated">
</div>
<script type="text/javascript">
/*Main*/
function main() {
}
</script>
<script type="text/javascript" src="/js/social_networking.js"></script>
<?php include_once("common_objects.php"); ?>
</div><!--close the body_container div-->
</body>
</html>
<?php ob_flush(); ?>