aboutsummaryrefslogtreecommitdiffhomepage
path: root/apioforum/templates/create_thread.html
blob: 04b4f42bd06f89ec98d1d4429469850343da5a84 (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 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 %}