-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy patherror.php
More file actions
38 lines (32 loc) · 1.02 KB
/
Copy patherror.php
File metadata and controls
38 lines (32 loc) · 1.02 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
<!doctype html>
<head>
<title>Imaguana | Error</title>
<!-- CSS, Meta, Ajax, etc. -->
<?php include 'view/head.php' ?>
</head>
<body>
<!-- Navigation Bar -->
<?php include 'view/nav-bar.php'; ?>
<!-- Page Content -->
<div class="container ws-page-container" style="margin-top: -65px">
<div class="row">
<div class="ws-faq-page">
<div class="ws-works-title clearfix">
<div class="col-sm-12">
<h3 style="font-size: 30px">404 Error: Page Not Found</h3>
<div class="ws-separator"></div>
</div>
<div style="text-align: center;">
<img src="assets/img/404.jpg" />
</div>
</div>
</div>
</div>
</div>
<!-- End Page Content -->
<!-- Foot Bar -->
<?php include 'view/foot-bar.php'; ?>
<!-- Scripts -->
<?php include 'view/scripts.php' ?>
</body>
</html>