- Install and configure dependencies
- Create a route through flask called `test` which will print "Hello World".
- Create a simple landing html page and make a route for this page through flask.
- Create some more html files like login.html, register.html and dashboard.html
- Check if you are able to print the values on screen from the form
- Install mysql database (for windows, you can use wamp and phpmyadmin to start, remember to allow the password less login inside `config.inc.php`)
- Create a sample database for the registration through phpmyadmin.
- Configure this database from our flask application and add the values.
- Implement the login feature.
- Test the application