Reputation: 19
database used: (sqlite3) {Flask SQLAlchemy}
Files description:
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.
Upvotes: -1
Views: 88
Reputation: 1
First, create the user model to store users' data then,
Upvotes: 0