summaryrefslogtreecommitdiffhomepage
path: root/apioforum/templates/create_thread.html
blob: 9de73129c674dcd90f3ecbcd8c5ac91447ee13d4 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
{% extends 'base.html' %}
{% block header %}
<h1>{% block title %}create thread{% endblock %}</h1>
{% endblock %}

{% block content %}
<form action="{{url_for('forum.create_thread')}}", method="POST">
    <label for="title">thread title</label>
    <input name="title" id="title">
    <br>
    <label for="content">thread content</label>
    <textarea name="content" id="content" class="new-post-box" placeholder="thread content here"></textarea>
    <input type="submit" value="create">
</form>
{% endblock %}