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

The following exception is thrown on an app that follows the instructions in your docs. ``` File "/usr/local/lib/python3.8/site-packages/flask_user/__init__.py", line 27, in from .user_manager import UserManager File "/usr/local/lib/python3.8/site-packages/flask_user/user_manager.py", line 14, in...

Flask-Mail is used within https://flask-user.readthedocs.io/en/latest/basic_app.html ( possibly other places as well ) and there's an issue with this. Flask-Mail hasn't seen an update since November 4th, 2014 - over 5.5...

Hello, using Python 3.6 with virtualenv, _pip install flask_user_ does not create the .mo files in .../site-packages/flask_user/translations/... Is this intended? The v0.6 documentation (https://flask-user.readthedocs.io/en/v0.6/internationalization.html) states how to compile these, but...

In flask_user\decorators.py ``` allowed = _is_logged_in_with_confirmed_email(user_manager) if not allowed: # Redirect to unauthenticated page return user_manager.unauthenticated_view() # bug ``` We should redirect to resend email confirmation page. Else they got...

I found a way to avoid use of Gmail less secure apps

There is a small typo in flask_user/db_adapters/mongo_db_adapter.py, flask_user/db_adapters/sql_db_adapter.py. Should read `application` rather than `appliation`.

Hello folks, I want to use flask-user with internal authentication but also with flask-oidc. However, when I proceed to `login_user` it failed with: ``` File "/home/asyd/.cache/pypoetry/virtualenvs/timetracking-oW1qtLzd-py3.7/lib/python3.7/site-packages/flask_user/user_mixin.py", line 26, in get_id...

I'm working on an application that has `USER_ENABLE_INVITATION` and `USER_REQUIRE_INVITATION` set. In the initial database, there are no users and an elegant way to bootstrap that would seem to run...

Feature request