database used: (sqlite3) {Flask SQLAlchemy}
Files description:
- homepage : html page
- login_page : html form page which takes in values like username/password
- dashboard_page : html page which pulls out data from the database
I created a flask based web app, but up until now it is a single user based system (I haven't added auth measures yet.)
Like it has homepage -> Login Page -> dashboard page.
Now I want separate dashboard pages for separate users. For Example: Fatima and Sana should see separate contents given that they are two separate users.
I seek basic guidance on where to start and what tools can be used to implement the forementioned steps.
First, create the user model to store users' data then,