-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy patherror.php
More file actions
43 lines (43 loc) · 1.67 KB
/
error.php
File metadata and controls
43 lines (43 loc) · 1.67 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
<!DOCTYPE HTML>
<html lang="en">
<head>
<title>The Error Page</title>
<link rel="stylesheet" type="text/css" href="/private/bootstrap/css/bootstrap.css"></link>
<link rel="stylesheet" type="text/css" href="/private/bootstrap/css/bootstrap-responsive.css"></link>
</head>
<body>
<div class="container">
<br>
<div class="row">
<div class="page-header">
<h1 class="offset1">
<img src="/private/imgs/logo.png"></img>
<small>Here's an idea, let's give everyone an online resume, for free.</small>
</h1>
</div>
</div>
<br>
<div class="hero-unit">
<span class="span6">
<h1>Oops!</h1>
<h2 >We couldn't find the webpage you were looking for.</h2>
</span>
<center>
<img src="/private/imgs/error.png">
</center>
</div>
</div>
<?php include "private/php_scripts/encryption.php" ?>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.7.2/jquery.min.js"></script>
<script type="text/javascript" src="/private/bootstrap/js/bootstrap.js"></script>
<script type="text/javascript">
var _gaq = _gaq || [];
_gaq.push(['_setAccount', 'UA-33395111-1']);
_gaq.push(['_trackPageview']);
(function() {
var ga = document.createElement('script'); ga.type = 'text/javascript'; ga.async = true;
ga.src = ('https:' == document.location.protocol ? 'https://ssl' : 'http://www') + '.google-analytics.com/ga.js';
var s = document.getElementsByTagName('script')[0]; s.parentNode.insertBefore(ga, s);
})();
</script>
</body>