Current directory: /home/klas4s23/domains/585455.klas4s23.mid-ica.nl/public_html/Gastenboek/uploads
<?php
$pageTitle = "Contact - Vakantie Villa Verkenner";
include 'includes/header.php';
?>
<main>
<section class="contact-section">
<h1>Get in Touch</h1>
<form action="contact_process.php" method="post" class="contact-form">
<label for="naam">Name:</label>
<input type="text" id="naam" name="naam" placeholder="Your name" required>
<label for="email">E-mail:</label>
<input type="email" id="email" name="email" placeholder="you@example.com" required>
<label for="phone">Phone:</label>
<input type="text" id="phone" name="phone" placeholder="Your phone">
<label for="message">Message:</label>
<textarea id="message" name="message" placeholder="Type your message..." required></textarea>
<button type="submit" class="submit-btn">Submit</button>
</form>
<div class="contact-info">
<p><strong>Adres:</strong> Oslo, Noorwegen</p>
<p><strong>Mail:</strong> info@vakantievilla.com</p>
<p><strong>Tel:</strong> +47 345 886 987</p>
<img src="images/villa.png" alt="Villa" class="villa-image">
</div>
</section>
</main>
<?php include 'includes/footer.php'; ?>