forked from TGRTON/Demo-frontend-design-dex-template
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path404.php
22 lines (22 loc) · 818 Bytes
/
404.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
<?php
require "_header.php";
?>
<main class="page-main justify-content-center">
<div class="container">
<div class="row" style="min-height: 80vh">
<div class="col-md-8 col-lg-4 m-auto text-center">
<div class="mb-4"><i class="fa-duotone fa-triangle-exclamation color-grey fa-6x"></i></div>
<h3 class="h2 mb-4 fw-900">
Ooops! <span class="d-block">Page Not Found</span>
</h3>
<p class="fw-500 color-grey mb-5">
Sorry, but the page you are looking for is not found. Please, make sure you have typed the current URL
</p>
<a href="/" class="btn btn-secondary">Home Page</a>
</div>
</div>
</div>
</main>
<?php
require "_footer.php";
?>