Skip to the content.
Home Notes Data Structure Create Task Study Plan Quiz Corrections Replit

Week 4: TT3

Tech Talks

Week 0 Week 1 Week 2 Week 4

Accounts and Login

Inheritance: Getting information from another developer and adding it to the class. (OOP)

Authenticated: Approved to login

@login_manager.unauthorized_handler
def unauthorized():
    """Redirect unauthorized users to Login page."""
    return redirect(url_for('crud.crud_login'))

-Returns User to login page if they didn’t log in.