HS077
HS077

Reputation: 19

How to create a inter-interactive multi-user profile system in a Flask based Web App?

database used: (sqlite3) {Flask SQLAlchemy}

Files description:

  1. homepage : html page
  2. login_page : html form page which takes in values like username/password
  3. 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.

Upvotes: -1

Views: 88

Answers (1)

Ashiqur
Ashiqur

Reputation: 1

First, create the user model to store users' data then,

  1. create the user registration part
  2. create the user log-in part
  3. create the user account part
  4. create the user log-out part
  5. And last make every thing responsive and check that again and again

Upvotes: 0

Related Questions