-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy patherror.php
32 lines (30 loc) · 1.25 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
<!DOCTYPE html>
<html class="no-js" lang="en-US">
<head>
<title>404-error | FoodieNex</title>
<?php require_once "./includes/head.phtml"?>
</head>
<body app-name="error-page">
<div class="error-section pt-5 mt-5">
<div class="container">
<div class="row">
<div class="col-xs-12 col-sm-12 col-md-12 col-lg-12 col-xl-12">
<div class="error text-center">
<div class="error-img">
<img src="src/img/404_Error.png" class="w-100 img-fluid" alt="" />
</div>
<div class="error-content col-sm-12 col-md-7 col-lg-7 col-xl-7m m-auto">
<h3 class="error-title"> Page not found.</h3>
<p class="error-description">The link you are looking for has been removed or wrong.</p>
<a href="<?= "./"?>" class="error-btn btn text-center">
<i class="icofont-double-left"></i>
<span class="ml-2">Return Home</span>
</a>
</div>
</div>
</div>
</div>
</div>
</div>
</body>
</html>