An even more educational version of the Bandolier for Learn JS the Hard Way.
https://learnjsthehardway.com/
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
20 lines
499 B
20 lines
499 B
9 months ago
|
{% include "./header.html" %}
|
||
9 months ago
|
<h1>Your TODOs</h1>
|
||
|
|
||
|
<p>Welcome {{ name }}, here's your TODOs</p>
|
||
|
|
||
|
<ol>
|
||
|
{% for todo in todo_list %}
|
||
9 months ago
|
<li style="display: flex; gap: 1rem;"><form action="/todo?todo_id={{ todo.id }}" method="POST"><button>X</button></form> {{ todo.task }}</li>
|
||
9 months ago
|
{% else %}
|
||
|
<li>No TODO Items</li>
|
||
|
{% endfor %}
|
||
|
</ol>
|
||
|
|
||
9 months ago
|
<h4>Add a New TODO</h4>
|
||
|
<form action="/todo" method="POST">
|
||
|
<label for="task">Task</label>
|
||
|
<input name="task"></input>
|
||
|
</form>
|
||
9 months ago
|
{% include "./footer.html" %}
|