-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path404.php
More file actions
49 lines (41 loc) · 1.64 KB
/
Copy path404.php
File metadata and controls
49 lines (41 loc) · 1.64 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
<?php
session_start();
require 'inc/connection.inc.php';
require 'inc/security.inc.php';
?>
<!DOCTYPE html>
<html lang="en-GB">
<head>
<?php include 'inc/meta.inc.php';?>
<title>Page Not Found | Bucksburn Amateur Swimming Club</title>
<link href='https://fonts.googleapis.com/css?family=Bree+Serif' rel='stylesheet' type='text/css'>
<link href='https://fonts.googleapis.com/css?family=Hind' rel='stylesheet' type='text/css'>
<link href="css/site.min.css" rel="stylesheet"/>
</head>
<body>
<?php include 'inc/header.inc.php';?>
<br>
<div class="row" id="content">
<div class="large-12 medium-12 small-12 columns">
<ul class="breadcrumbs">
<li><a href="index.php" role="link">Home</a></li>
<li class="current">Page Not Found</li>
</ul>
<h2>Page Not Found</h2>
<div class="large-6 medium-12 small-12 columns">
<img src="img/404.jpg" alt="" />
</div>
<div class="large-6 medium-12 small-12 columns">
<h2>Sorry, but the page you are looking for could not be found.</h2>
<h3>You could try:</h3>
<ul>
<li>Checking the url is correct and try again</li>
<li>Accessing the page you are looking for from the <a href="index.php">homepage</a></li>
<li><a href="contact.php">Contacting us</a> if you believe an error has occurred</li>
</ul>
</div>
</div>
</div>
<?php include 'inc/footer.inc.php';?>
</body>
</html>