Zurb Foundation - 创建自定义表单但现在不会创建帖子

时间:2017-03-05 10:10:54

标签: html css django forms zurb-foundation

所以我使用Foundation Forms为我建立的网站创建了一个表单,现在它不会创建帖子。

这是html:

<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>
</form>
</div>
</div>

1 个答案:

答案 0 :(得分:0)

你的意思是HTTP帖子不是“发帖”?看起来你错过了起始<form>标签,这不是Zurb问题。