After integrating Foundation Forms into my website to create a form, I am facing an issue where the post is not being created.
Below is the HTML code snippet:
<div style="padding-bottom: 5px; padding-top: 10px;">
<label>
<h3><small><font color="black">Post Title</font></small></h3>
<input type="text" placeholder="Enter Post Title Here">
</label>
</div>
<!--Post Content-->
<div style="padding-bottom: 5px;">
<label>
<h3><small><font color="black">Post Content</font></small></h3>
<textarea placeholder="Enter Post Content Here"></textarea>
</label>
<hr>
</div>
<!--Post File-->
<label for="exampleFileUpload" class="button">Upload File</label>
<input type="file" id="exampleFileUpload" class="show-for-sr">
<br>
<hr>
<!--Submit Post-->
<label>
<input name= "myfiles" type='submit' class='button' value='Create Post'/>
</label>