UserManager View methods¶
Below is a complete list of customizable Flask-User views.
| The UserManager__Views class mixes into the UserManager class.
| Mixins allow for maintaining code and docs across several files.
-
class
UserManager__Views¶ Flask-User views.
-
change_password_view(*args, **kwargs)¶ Prompt for old password and new password and change the user’s password.
-
change_username_view(*args, **kwargs)¶ Prompt for new username and old password and change the user’s username.
-
confirm_email_view(token)¶ Verify email confirmation token and activate the user account.
-
email_action_view(*args, **kwargs)¶ Perform action ‘action’ on UserEmail object ‘id’
-
forgot_password_view()¶ Prompt for email and send reset password email.
-
invite_user_view(*args, **kwargs)¶ Allows users to send invitations to register an account
-
login_view()¶ Prepare and process the login form.
-
logout_view()¶ Process the logout link.
-
register_view()¶ Display registration form and create new User.
-
resend_email_confirmation_view()¶ Prompt for email and re-send email conformation email.
-
reset_password_view(token)¶ Verify the password reset token, Prompt for new password, and set the user’s password.
-
unauthenticated_view()¶ Prepare a Flash message and redirect to USER_UNAUTHENTICATED_ENDPOINT
Prepare a Flash message and redirect to USER_UNAUTHORIZED_ENDPOINT
-