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

UserMixin.get_user_by_token throws an exception when token is verified, but user does not exist. Below is proposed diff. ``` --- a/flask_user/user_mixin.py +++ b/flask_user/user_mixin.py @@ -49,7 +49,8 @@ class UserMixin(FlaskLoginUserMixin): user_id =...

it seems that the username field cannot be deleted when logging in. BUT I only need email and password to log in. And I don not want my user to...

I'm really new to Flask and use it as learning tools and find Flask-User really fascinating! So, this is how to verify user as a authenticated user right? But **How...

When using Flask-User v1.0, Flask-Admin cannot edit the user object anymore, but shows the "Username already exists" error. Inserting still works fine. When I remove the UserMixin from the class,...

Need more info

Is it possible to manage user roles through OAuth2?

When I register with flask-user, duplicate user name is allowed. Userclass scenario screenshot ![image](https://user-images.githubusercontent.com/14018114/59114478-3f402e00-8915-11e9-9831-b6c901dc96fc.png) **User Settings:** USER_ENABLE_EMAIL = False # Disable email authentication USER_ENABLE_USERNAME = True # Enable username authentication...

I'm trying to translate email messages since `Flask-User` doesn't provide translations. BTW why? I did everything according to https://flask-user.readthedocs.io/en/v0.6/internationalization.html. But there're lines: https://github.com/lingthio/Flask-User/blob/a379fa0a281789618c484b459cb41236779b95b1/flask_user/translation_utils.py#L13-L20 that always forces to use predefined translations....

Hello, I'm not entirely sure which lib/what is wrong but have been having some issues with encoding a password I keep getting `TypeError: Unicode-objects must be encoded before hashing` I...

This is working. I've tried to document things but I'm not really familiar with restructuredtext, so I may have missed something.

**Setup:** USER_ENABLE_EMAIL = True # Disable email authentication USER_ENABLE_USERNAME = False # Enable username authentication USER_REQUIRE_RETYPE_PASSWORD = False # Simplify register form **Description:** When trying to create a user, a...