Flask-User icon indicating copy to clipboard operation
Flask-User copied to clipboard

Customizable User Authorization & User Management: Register, Confirm, Login, Change username/password, Forgot password and more.

Results 104 Flask-User issues
Sort by recently updated
recently updated
newest added

so flask-user is compatible with flask-admin

Rebase Requested

Flask-User doesn't support **flask-babelex**. I use babelex package with flask-admin. Got error below: ``` File "/Volumes/Dev/projects/flask-admin-proj/ve/lib/python3.6/site-packages/flask_debugtoolbar/__init__.py", line 125, in dispatch_request return view_func(**req.view_args) File "/Volumes/Dev/projects/flask-admin-proj/ve/lib/python3.6/site-packages/flask_user/decorators.py", line 29, in decorated_view return func(*args,...

I needed to validate passwords based on the user's information (username not included in password, password not reused from previous password). This motivated several changes: - Make any `user` entity...

Rebase Requested

What are the differences between Flask-User and Flask-Security?

Question

I want to use flask-user in my own projects, but the last update was 10 months ago and there are many PR's waiting for reviews. Is this project status ok...

Question

This feature requires: - a MongoDbAdapter class with a .save(object) method. - a TokenManager that accepts string IDs @sebastiansdrawings has a fork with MongoDB support: See https://github.com/sebastiansdrawings/Flask-User.

Feature request

I think that it's a common use case that people want to put all of the user urls under another prefix other than '/user' (e.g. '/admin', '/'). Might it make...

Rebase Requested

when working behind a reverse proxy (i.e. nginx serving static content or handling HTTPS traffic). - by adding a USER_APP_ROOT_URL customization value - by generating USER_APP_ROOT_URL + url_for(, _external=True) in...

Rebase Requested

Feature request: Add support for hash algorithm migrations. Possibly using [verify_and_update](https://passlib.readthedocs.io/en/stable/lib/passlib.context.html?highlight=deprecated#passlib.context.CryptContext.verify_and_update).