Aside from Django, it seems most modern web frameworks provide little or no first-class user management or authN/Z features.
And although many frameworks have plugin or module extension capabilities, they still seem to lack "just works" user auth modules.
It is probably fair to say that a significant percentage of web applications are public facing and need user logins, accounts, and even profiles. This is not unlike how many web applications need persistent storage.
On the storage side, there are often clear and easy paths to databases and even cloud storage systems via plugins, and ORMs and such to simplify persistence.
But on the user auth side, the user of the framework is left with the task of integrating whatever external auth module. This is especially challenging when framework and external module versions shift, documentation and guides become out of date, and StackOverflow questions and answers become stale.
Why are we still reinventing this wheel so often?