summaryrefslogtreecommitdiffhomepage
path: root/apioforum/templates/create_thread.html
blob: b8d204c65e250e2acc3c58cf67a12edadf3d0771 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
{% 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">
    <label for="content">thread content</label>
    <textarea name="content" id="content"></textarea>
    <input type="submit" value="yes">
</form>
{% endblock %}