25 lines
1008 B
PHP
25 lines
1008 B
PHP
<?php
|
|
session_start();
|
|
$content = json_decode(file_get_contents('content.json'), true);
|
|
?>
|
|
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
<title>Error | <?php echo htmlspecialchars($content['site_title']); ?></title>
|
|
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.3.0/dist/css/bootstrap.min.css" rel="stylesheet">
|
|
<link href="assets/css/dashboard.css?v=<?php echo time(); ?>" rel="stylesheet">
|
|
</head>
|
|
<body>
|
|
<div class="container text-center mt-5">
|
|
<div class="card" style="max-width: 500px; margin: auto;">
|
|
<div class="card-body">
|
|
<h1 class="card-title text-danger">Something went wrong!</h1>
|
|
<p class="card-text">There was an error sending your message. Please try again later.</p>
|
|
<a href="index.php#contact" class="btn btn-primary">Go back and try again</a>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</body>
|
|
</html>
|