Login with google allows user to login first time even though the "New user accounts can be used right away" tab is disabled!

Hi @advancedhealthsys, thanks for pointing it out a very interesting matter. Without seeing your code, it’s kind hard to say what actually happen. But I guess below are yours

def __init__(self, **properties):
    # Set Form properties and Data Bindings.
    self.init_components(**properties)
    anvil.users.login_with_google()    

It is true that the form is displayed, however it you add the following code, you will find that the user doesn’t actually login yet since there is an error

#dev only, not for production
user = anvil.users.get_user() 
self.label_1.text = user['enabled']
TypeError: 'NoneType' does not support indexing
at Form1, line 17

The form is displayed because it is not protected. Please see the following topic for more information how to fix it