-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path404.php
More file actions
45 lines (42 loc) · 1.61 KB
/
404.php
File metadata and controls
45 lines (42 loc) · 1.61 KB
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
session_start();
include("phpscripts/database-connection.php");
include("phpscripts/check-login.php");
?>
<!doctype html>
<html lang="en">
<head>
<?php include("includes/header.php"); ?>
</head>
<body class="homepage">
<main class="d-flex align-items-center" style="height: 100vh;">
<section class="error-page container">
<div class="row">
<div class="col text-center">
<img src="assets/images/EduMechanic_Logo-.webp" class="animation-fade-in object-fit-contain"
width="200" height="200" alt="IMCCS Logo">
<div class="school-name animation-fade-in">
<h3 class="custom-text-color fw-bold mb-4">Edu Mechanic</h3>
</div>
</div>
</div>
<div class="row mb-3">
<div class="col text-center animation-fade-in">
<h1 class="fw-semibold text-uppercase">404 Not Found</h1>
</div>
</div>
<div class="row mb-5">
<div class="col text-center animation-fade-in">
<h4>Sorry, the page you are looking for does not exist.</h4>
</div>
</div>
<div class="row">
<div class="col text-center animation-fade-in">
<button onclick="history.back()" class="btn btn-primary" style="width: 15%;">Go Back</button>
</div>
</div>
</section>
</main>
<?php include("includes/scripts.php"); ?>
</body>
</html>