Add theme

This commit is contained in:
David Hoppenbrouwers
2022-10-07 19:13:16 +02:00
parent a6695b3e39
commit 09cb2df004
11 changed files with 164 additions and 32 deletions

View File

@@ -2,8 +2,16 @@
{% block content %}
<form method="post">
<input type="text" name="title">
<textarea name="text"></textarea>
<input type="submit" value="Post">
<table class=form>
<tr>
<td>Title</td>
<td><input type="text" name="title"></td>
</tr>
<tr>
<td>Text</td>
<td><textarea name="text"></textarea></td>
</tr>
</table>
<p><input type="submit" value="Post"></p>
</form>
{% endblock %}