25 lines
995 B
PHP
25 lines
995 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>Message Sent | <?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-success">Message Sent!</h1>
|
|
<p class="card-text">Thank you for contacting us. We will get back to you shortly.</p>
|
|
<a href="index.php" class="btn btn-primary">Go back to Homepage</a>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</body>
|
|
</html>
|