0

I'm trying to use Flask-Security on a project. I've made may search on SO but I just can't find a way to simply implement a the reset password functionality. I just don't understand how to use the flask-security APi in this case.

I notice that all the template can be found on their github, I also check the source code but it's like a mystery.

If you have some good tips, advice or example on how to implement reset password it would be really kind.

Sorry for my bad english

1 Answer 1

4

You need to turn on Flask-Security's SECURITY_RECOVERABLE setting. How exactly you do that depends on your code, but it's something along the lines of

app.config['SECURITY_RECOVERABLE'] = True

This will turn on a link to the password reset page.

Sign up to request clarification or add additional context in comments.

1 Comment

Thanks dirn, I'll look at it. sry for late reply.

Start asking to get answers

Find the answer to your question by asking.

Ask question

Explore related questions

See similar questions with these tags.