aboutsummaryrefslogtreecommitdiffstats
path: root/templates/news/add.html
blob: c2bc018c97b36072a9aa30dcc11bfd429bc5e698 (plain)
1
2
3
4
5
6
7
8
9
{% extends 'layout.html' %}

{% block content %}
<form action="{{ url_for('add_news')}}" method="post">
    <input type=text size=80 name=title /><br/>
    <textarea name=content rows=20 cols=80></textarea>
<input type="submit" value="Submit" />
</form>
{% endblock %}