chiro-canto/public/contact/golden-book/index.php

34 lines
853 B
PHP

<?php session_start(); ?>
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Golden Book | Samuel ORTION</title>
<link rel="stylesheet" type="text/css" href="/styles/style.css">
</head>
<body>
<?php include("/menus.php"); ?>
<header>
<h1>Samuel ORTION</h1>
</header>
<section>
<article>
<h1>Golden Book</h1>
<h2>Send a message to community</h2>
<?php include("form.php"); ?>
<div class="error">
<?=$_SESSION['error_msg']?>
</div>
<h2>See messages from community</h2>
<?php include("messages.php"); ?>
</article>
</section>
<?php include("/footer.php"); ?>
</body>
<script src="/scripts/script.js"></script>
</html>