home.html 395 B

123456789101112131415
  1. <html>
  2. <head>
  3. <title>To-Do lists</title>
  4. </head>
  5. <body>
  6. <h1>Your To-Do list</h1>
  7. <form method="POST">
  8. <input name="item_text" id="id_new_item" placeholder="Enter a to-do item"/>
  9. {% csrf_token %}
  10. </form>
  11. <table id="id_list_table">
  12. <tr><td>1: {{ new_item_text }}</td></tr>
  13. </table>
  14. </body>
  15. </html>