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

I noticed on the doc (http://flask-user.readthedocs.io/en/v0.6/internationalization.html) that Flask-User still does not have Brazilian Portuguese on the list of languages supported. What can I do to translate the texts to my...

If you want to use a custom email adapter, Flask-Mail should not be required, however instantiating SMTPEmailAdapter in the init_app function requires Flask-Mail to be installed to work correctly. I...

There is no message flashed in the edit_user_profile_view after committing the saved changes.

If a user is initialized without any role(s) before committing to sqlite database, it cannot be appended later without causing a sqlite3.IntegrityError. If the user is initialized with a role,...

Looks like some classes has been changed but docs hasn't been updated. For example: `UserProfileForm` in the docs looks like changed to `EditUserProfileForm`

Using the recommended "[Optional UserEmail data-model](http://flask-user.readthedocs.io/en/latest/data_models.html)" and when enabling multiple emails, I notice that the link to the user profile in the upper right hand corner disappears, at least when...

Is it recommended to use flask-user as RESTful authentication/authorization API? What kind of problem i would have if i'm using flask-user as RESTful authentication/authorization server?

Feature request
Not planned

I already have my app working beautifully with Flask-Login where via the `@login_required` decorator I have two sets of pages: for_all_users, and second for logged_in_users. Now, I need to add...

Question

Hi everyone, Sometimes may be useful to know about rights (roles) of a user for a particular view by its URL. Something like this: ``` html {% if current_user.can_view('myapp.list_objects') %}...

Feature request
Not planned

I just started using flask-user in my aplications but it lacks a security feature to invalidate the active user sessions and remember tokens when a user reset or change the...

Fixed and Released
Security Issue