This is a To-Do List application
The technologies that are used in this application are as follows:
- Java
- Spring Boot
- Thymeleaf
- HTML, CSS
To view the UI of this to-do list application, run the application and move to: http://localhost:8080/tasks
To view the h2 console, run the application and move to: http://localhost:8080/h2-console You can view your database here by using the username and password that have been provided in the application.properties file.
Here you can view your existing to-do list on the landing page. (Since I am using h2 database, the landing page will be empty as it is an in-memory database)
You also have the option to add new tasks to your list with the help of a button. After the task has been added from the add task page, you will be redirected to the landing page where you can view your added task.