-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathnotFound.php
25 lines (25 loc) · 892 Bytes
/
notFound.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
<!DOCTYPE html>
<html lang="en">
<head>
<?php include($_SERVER['DOCUMENT_ROOT'] . "/camagru/includes/links.php") ?>
<link rel="stylesheet" href="/camagru/assets/css/notFound.css">
<title>Camagru - 404</title>
<script src="/camagru/assets/js/themeSwitcher.js"></script>
</head>
<body>
<?php include($_SERVER['DOCUMENT_ROOT'] . "/camagru/includes/navbar.php") ?>
<div class="everything">
<div class="back"></div>
<div class='container'>
<div class="jumbotron">
<h1 class="display-4 oops text-break">Oops! Page not found</h1>
<p class="lead paragraph text-break"> This is not the web page you are looking for.</p>
<img class="image" src="/camagru/assets/images/not-found.png" alt="404">
</div>
</div>
</div>
<div class="loading-container" id="loading" style="display: flex;">
<div class="spinner-border m-auto" style="color: white;"></div>
</div>
</body>
</html>