2020-11-07 20:48:41 +11:00
|
|
|
<html>
|
2020-11-07 21:25:24 +11:00
|
|
|
<head>
|
|
|
|
<title>To-Do lists</title>
|
|
|
|
</head>
|
|
|
|
<body>
|
|
|
|
<h1>Your To-Do list</h1>
|
2020-11-11 14:35:01 +11:00
|
|
|
<form method="POST" action="/lists/new">
|
2020-11-08 14:44:57 +11:00
|
|
|
<input name="item_text" id="id_new_item" placeholder="Enter a to-do item" />
|
|
|
|
{% csrf_token %}
|
|
|
|
</form>
|
2020-11-07 21:25:24 +11:00
|
|
|
</body>
|
2020-11-07 20:48:41 +11:00
|
|
|
</html>
|