-
Notifications
You must be signed in to change notification settings - Fork 0
/
errorPage.php
37 lines (24 loc) · 1018 Bytes
/
errorPage.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
<?php include "dbLogic.php";
session_start();
if (isset($_SESSION['loggedin']) && $_SESSION['loggedin']){
header("Location: index.php");
exit();
}
?>
<?php require_once('partials/header.php') ?>
<link rel="stylesheet" href="static/css/style.css?v=<?php echo time(); ?>">
<title>BlogsConn - Error</title>
</head>
<body style = "background-color: #ece9e9;">
<!-- Navbar -->
<?php include('partials/navbar.php')?>
<?php include('partials/menuLinks.php')?>
<h2 class = "search__heading">
<i style = "color: red;" class="fas fa-exclamation-triangle"></i>
404, Page not found!
</h2>
<div class="search__noDataFound">
<img src="https://image.freepik.com/free-vector/no-data-concept-illustration_114360-616.jpg" alt="">
</div>
<!-- <button id="add-post-btn"><a style = "color: white; text-decoration:none;" href="home">Go To Home</a></button> -->
<?php require_once('partials/footer.php') ?>