Get editing working
[txt.house] / txt_house / templates / index.html
1 {% extends 'base.html' %}
2
3 {% block body %}
4 <style>
5   h1 {
6     margin: 3rem 0;
7   }
8
9   p {
10     margin: 0;
11   }
12 </style>
13
14 <h1>txt.house</h1>
15
16 <p>Paste or edit in text and submit to get a permanent link for it.</p>
17
18 <form class='editor' action='{% url "create" %}' method='post'>
19   {% csrf_token %}
20   <textarea name='text'></textarea>
21   <input type='submit'></input>
22 </form>
23
24 {% endblock %}