flask-security
flask-security copied to clipboard
Quick and simple security for Flask applications
When I try to login a user from **VueJS/Axios** (against the `/login` route from **Flask-Security**), Flask fails to redirect me once the login succeeds. I removed `WTF_CSRF` to make the...
There haven't been much activity on this repository for past few months and a lot of open issues that have not been answered, is this project being abandoned or put...
I get the following error when I run python setup.py test request = @pytest.fixture() def app(request): app = Flask(__name__) app.response_class = Response app.debug = True app.config['SECRET_KEY'] = 'secret' app.config['TESTING'] =...
Hi, I'm just wondering which version should be available. In CHANGES I see 3.1.0 as last entry, but GitHub provides only 3.0.0 as last release. Regards, Thomas
I use md5_crypt ,but tell me: ValueError: Invalid password hashing scheme 'md5_crypt'. Allowed values are bcrypt, des_crypt, pbkdf2_sha256, pbkdf2_sha512, sha256_crypt, sha512_crypt and plaintext who knows why?
The login view is a `NextFormMixin` subclass, so it accepts a next parameter. As I understand it, the parameter can be a URL, a path or an endpoint. If you...
Hello, Defining SECURITY_MSG_PASSWORD_NOT_PROVIDED in config.py, returns the following error, after you click the login button in the default form. This usually happens when the field password is empty and you...
Hi, I use the flask-security and flask-babelex, tried to make a multi language website, everything is working fine, login page is translated, my problem is the error messages never translated...
I just want to check what others think about Flask-Babelex... As of today the two are not API-compatible anymore. Flask-Babelex development seem stuck and Flask-Babel in the recent days got...
The forgot_password in view.py supports it, but not reset_password(token). Would you provide the same function for reset_password(token)? I tried on my local and looks followings work: ``` python #form =...