I was following this video tocreate an authentication for my app.
My app consists of multiple pages.
I input the following code into my main file (app.py) which is launching the whole app with all the pages:
dash-auth does work with multi-page apps. You can see an example here:
It is however, very, very basic auth. It simply brings up a sign-in popup before the app starts. If you would like more control over access to certain pages or features, then a different option such as flask would be a better way to go.
Are you seeing this screen? If not, what browser are you using?
As you said, it does work.
What was causing the problem was the path parameter in the main homepage of the app.
It wasn’t working, because it had it was path="/Summary".
As soon as I changed it to path="/" it started working.