aboutsummaryrefslogtreecommitdiffstats
path: root/templates/news/add.html
diff options
context:
space:
mode:
Diffstat (limited to 'templates/news/add.html')
-rw-r--r--templates/news/add.html9
1 files changed, 9 insertions, 0 deletions
diff --git a/templates/news/add.html b/templates/news/add.html
new file mode 100644
index 0000000..c2bc018
--- /dev/null
+++ b/templates/news/add.html
@@ -0,0 +1,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 %}