This is a simple TODO application. This page uses flexbox for positioning. You fill in the title, description, and target date of the task and press submit. This will automatically update the table adjacent to the form. The urgency is calculated based on how far away the task is from the current date. You can also delete entries from the TODO list. (WARNING: if you refresh the page and try deleting an added item, it may remove more than one from the table)
Link: https://a2-ethanshanbaum.onrender.com/
- Tech Achievement 1: Instead of having a separate page to display the server data, I have it automatically update in the table. This works by having the table update (using a GET request on the server and filling in the data) whenever a POST or DELETE request occurs. The table updates by changing the inner HTML.
None