<!-- <?php
/* $header = "<h1>This is the contact page!</h1>";
$content = "<div class='container'>
<form action='action_page.php'>
<label for='fname'>First Name</label>
<input type='text' id='fname' name='firstname' placeholder='Your name..'>
<label for='lname'>Last Name</label>
<input type='text' id='lname' name='lastname' placeholder='Your last name..'>
<label for='country'>Country</label>
<select id='country' name='country'>
<option value='luxembourg'>Luxembourg</option>
<option value='germany'>Germany</option>
<option value='france'>France</option>
</select>
<label for='subject'>Subject</label>
<textarea id='subject' name='subject' placeholder='Write something..' style='height:200px'></textarea>
<input type='submit' value='Submit'>
</form>
</div>";
echo $header . "<br>" . $content; */
?> -->
<?php
require_once 'Functions/get_content.php';
$pageName = 'contact';
$pageData = getPageContent($dbc, $pageName);
if ($pageData) {
echo $pageData['header'];
echo $pageData['content'];
} else {
include_once "Pages/page_not_found.php";
}
?>