Pull out base template
[txt.house] / txt_house / templates / index.html
1 {% extends 'base.html' %}
2
3 {% block body %}
4 <form action='create' method='post'>
5   {% csrf_token %}
6   <textarea name='text'></textarea>
7   <input type='submit'></input>
8 </form>
9 {% endblock %}