Initial commit

This commit is contained in:
Yusur 2019-05-01 15:33:28 +02:00
commit c33a74711c
15 changed files with 606 additions and 0 deletions

11
templates/create.html Normal file
View file

@ -0,0 +1,11 @@
{% extends "base.html" %}
{% block body %}
<h2>Create</h2>
<form action="{{ url_for('create') }}" method=post>
<dl>
<dt>Message:</dt>
<dd><textarea name="text" placeholder="What's happening?"></textarea></dd>
<dd><input type="submit" value="Create" /></dd>
</dl>
</form>
{% endblock %}