-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path400.php
executable file
·27 lines (26 loc) · 1.05 KB
/
400.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
<!DOCTYPE html>
<html lang="en">
<head><?php require 'head.php'?></head>
<body>
<?php include 'nav.php'?>
<script>
document.getElementById("navHeading").innerHTML = "400";
$(document).ready(function(){
$('a[href^="index.php"]').addClass('active');
});
</script>
<div class="container marketing">
<hr class="featurette-divider">
<div class="row featurette">
<div class="col-md-7 order-md-2">
<h1> ERROR: 400<br>Bad Request </h1> <br>
<h2> Please try again, <br> if the issue persists please <a href="https://maschmeyer.ca/contact.php"> click here </a> </h2>
</div>
<div class="col-md-4 order-md-1">
<img class="featurette-image img-fluid mx-auto" style="width: 100% height: 500px;" src="lost.jpg" data-holder-rendered="true">
</div>
</div>
<!-- FOOTER -->
<?php include 'footer.php'?>
</div>
</body>