-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy patherror.php
45 lines (43 loc) · 1.96 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
33
34
35
36
37
38
39
40
41
42
43
44
45
<?php
include './include/title.php';
?>
<!DOCTYPE HTML>
<html>
<header>
<title>Septic Tank Monitoring<?php if (isset($title)) {echo "—{$title}";} ?></title>
<meta charset="utf-8">
<link rel="stylesheet" href="bootstrap-4.5.1/bootstrap-4.5.1/dist/jsbootstrap.min.css" crossorigin="anonymous">
<link href="fontawesome-free-5.13.0-web/fontawesome-free-5.13.0-web/css/fontawesome.css" rel="stylesheet">
<link href="fontawesome-free-5.13.0-web/fontawesome-free-5.13.0-web/css/brands.css" rel="stylesheet">
<link href="fontawesome-free-5.13.0-web/fontawesome-free-5.13.0-web/css/all.css" rel="stylesheet">
<link href="fontawesome-free-5.13.0-web/fontawesome-free-5.13.0-web/css/solid.css" rel="stylesheet">
<script type="text/javascript" src="js/jquery-3.4.1.min.js"></script>
<script src="js/jquery.min.js"></script>
<link rel="stylesheet" href="style1.css" type="text/css" />
</header>
<body>
<div class="grid">
<?php require './include/header.php'; ?>
<main class="main">
<?php require './include/main_header.php'; ?>
<div class="main-cards">
<div class="card">
<div class="card__header">
<div class="card__header-title text-light">
<strong>Error encountered</strong>
</div>
<div class="card__header-title text-light">
<!--<button id="renderBtn" align: right><strong>Re-fresh</strong></button>-->
</div>
<h2>Oops! There’s a Problem</h2>
<p class="overviewCard-subtitle">Sorry, the page you were looking for cannot be displayed.</p>
</div>
<!-- error message -->
</div>
</div>
</main>
<?php include './include/footer.php'; ?>
</div>
</body>
<script src="js/refresh.js"></script>
</html>