2025-12-30 22:06:06 -05:00
|
|
|
<html>
|
2025-12-30 22:19:42 -05:00
|
|
|
<head>
|
|
|
|
|
<title>To-Do lists</title>
|
|
|
|
|
</head>
|
|
|
|
|
<body>
|
|
|
|
|
<h1>Your To-Do List</h1>
|
2025-12-30 23:47:25 -05:00
|
|
|
<form method="POST">
|
|
|
|
|
<input name="item-text" id="id-new-item" placeholder="Enter a to-do item">
|
|
|
|
|
{% csrf_token %}
|
|
|
|
|
</form>
|
2025-12-30 22:19:42 -05:00
|
|
|
<table id="id-list-table">
|
2025-12-30 23:47:25 -05:00
|
|
|
<tr><td>1: {{ new_item_text }}</td></tr>
|
2025-12-30 22:19:42 -05:00
|
|
|
</table>
|
|
|
|
|
</body>
|
2025-12-30 22:06:06 -05:00
|
|
|
</html>
|