<?php include "templates/header.php" ?> <div class="post"> <form id="createPost" action="" method = "post"> <h2> Create a Post</h2> <p id="p1"> <label for="sujet" class="plabel">Le nom du sujet:</label> <input type="text" id="sujet" name="sujet"> </p> <p id="p2"> <label for="Fname" class="plabel">Your First name :</label> <input type="text" id="fname" name="fname" > </p> <p id="p3"> <label for="Description" class="plabel">Description:</label> <textarea id="description" name="description" placeholder="Write here ..." ></textarea> </p> <p> <button type="submit" > Submit</button> </p> </form> </div> <script src="assets/js/createPost.js"></script> </body> </html>