-
-
Notifications
You must be signed in to change notification settings - Fork 232
Open
Labels
Description
Hello, I'm using Basic auth as provided in the tutorial example.
the entry looks like
@app.route('/', methods=['GET', 'POST', 'OPTIONS', 'PUT', 'DELETE', 'HEAD', 'PATCH'])
@app.route('/<path:input_path>', methods=['GET', 'POST', 'OPTIONS', 'PUT', 'DELETE', 'HEAD', 'PATCH'])
@auth.login_required
def enter(input_path='/'):
Interestingly, firefox seems to remember the login information correctly and only asks for it once.