Current directory: /home/klas4s23/domains/585455.klas4s23.mid-ica.nl/public_html/Gastenboek/uploads
<?php include 'header.php'; ?>
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Guestbook - Home</title>
<link rel="stylesheet" href="styles.css">
<!-- <style>
body {
margin: 0;
padding: 0;
font-family: Arial, sans-serif;
background-color: #2f2f2f;
}
.container {
width: 80%;
margin: 0 auto;
text-align: center;
}
.button {
display: inline-block;
padding: 10px 20px;
margin: 10px;
text-decoration: none;
background-color: #0056b3;
color: #fff;
border-radius: 5px;
}
.button:hover {
background-color: #004080;
} </style> -->
<style>
.container {
max-width: 600px;
margin: 20px auto;
padding: 20px;
background-color: #fff;
border-radius: 10px;
box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}
</style>
</head>
<body>
<div class="container">
<h1>Welcome to Our Guestbook</h1>
<p>This is a simple guestbook where you can leave messages and share your thoughts with others.</p>
<p>Click the button below to visit our guestbook:</p>
<a href="guestbook.php" class="button">Guestbook</a>
<div class="guestbook-entries">
<h2>Guestbook Entries</h2>
<?php include 'display_messages.php'; ?>
</div>
</div>
</body>
</html>