home.html 382 B

1234567891011121314
  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. <p style="text-align: center;">
  9. <input name="item_text" id="id_new_item" placeholder="Enter a to-do item"/>
  10. </p>
  11. {% csrf_token %}
  12. </form>
  13. </body>
  14. </html>