Current directory: /home/klas4s23/domains/585455.klas4s23.mid-ica.nl/public_html/Gastenboek/uploads
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Guestbook</title>
<link rel="stylesheet" href="style.css">
</head>
<body>
<div class="container">
<div class="add-message">
<div class="container1">
<form action="submit.php" method="POST" enctype="multipart/form-data">
<h2>Send your Message!!</h2>
<label for="name">Name:</label>
<input type="text" id="name" name="name" placeholder="Your Name" required>
<label for="message">Message:</label>
<textarea id="message" name="message" rows="3" placeholder="Your Message" required></textarea>
<label for="image" class="custom-file-input">Send pics!</label>
<input type="file" id="image" name="image">
<input type="submit" value="Submit">
</form>
</div>
</div>
<div class="comments">
<h2> Comments</h2>
<?php include 'display_comments.php'; ?>
</div>
<div class="footer-and-nav-bar">
</form>
</div>
</div>
</body>
</html>