-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path404.php
42 lines (35 loc) · 1.29 KB
/
404.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
<?php
$errmsg = $_GET["err"];
require "assets/db.php";
require "assets/varnames.php";
require 'assets/sharedComponents.php';
$components = new SharedComponents();
include 'includes/header.php';
include 'includes/navbar.php';
?>
<!--page404-->
<div class="page404 ">
<div class="container-fluid">
<div class="row">
<div class="col-lg-8 m-auto">
<div class="page404-content">
<img src="assets/img/other/error404.png" alt="">
<h3>Oops... Page Not Found!</h3>
<h5 style="font-weight: bold;"><?= $errmsg ?></h5>
<p>Maybe the page which you are looking for does not exist. Please return to the homepage or
<a href="javascript:void(0);" style="font-weight: bold;" class="search-icon">Make a Search.</a>
</p>
<a href="./" class="btn-custom">Back to homepage</a>
</div>
</div>
</div>
</div>
</div>
<!--instagram-->
<?php
include 'includes/instagrampost.php';
?>
<?php
include 'includes/footer.php';
include 'includes/scripts.php';
?>