-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path404.php
36 lines (30 loc) · 1.04 KB
/
404.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
<?php
//------------------------------>> CENTRALIZED TECHFEST NAME WITH YEAR
require_once "config/techfestName.php";
?>
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title><?php $techfestName?> | 404 PAGE</title>
<!-- Include Header Scripts -->
<?php include_once "includes/headerScripts.php";?>
</head>
<body>
<div class="container">
<div class="row">
<div class="col-md-6 text-center mr-auto ml-auto py-5 mt-5">
<div class="card">
<div class="card-body">
<h1 class="card-title bg-warning p-2">Error Page</h1>
<h2 class="card-title">404 Error</h2>
<p class="card-text">The Page you are searching for is not available.</p>
<a href="index.php" class="btn btn-primary">Go to Home Page</a>
</div>
</div>
</div>
</div>
</div>
</body>
</html>