home.html 317 B

123456789101112
  1. <html>
  2. <head>
  3. <title>To-Do lists</title>
  4. </head>
  5. <body>
  6. <h1>Start a new To-Do list</h1>
  7. <form method="POST" action="/lists/new">
  8. <input name="item_text" id="id_new_item" placeholder="Enter a to-do item"/>
  9. {% csrf_token %}
  10. </form>
  11. </body>
  12. </html>