post.html 335 B

1234567891011
  1. {% extends "base.html" %}
  2. {% block content %}
  3. <form action="/post/post" method="post">
  4. <ul>
  5. <li>Title: <input type="text" name="title"></li>
  6. <li>Category: <input type="text" name="category"></li>
  7. <li>Content: <input type="text" name="content"></li>
  8. <li><button type="submit">Create</button></li>
  9. </ul>
  10. </form>
  11. {% endblock %}