Calling anvil.users.login_with_form() does not show Cancel button

What I’m trying to do:
Call anvil.users.login_with_form() and expect to see Cancel button
What I’ve tried and what’s not working:
Tried calling anvil.users.login_with_form() . Screen shows up with Login button but no Cancel button to cancel out of login screen as shown in the tutorial.
Code Sample:

# this is a formatted code snippet.
# paste your code between ``` 

Clone link:
share a copy of your app

Hi, if you take a peek at the docs or trigger the autocomplete in the brackets, you’ll see a few additional options you can control, e.g.

anvil.users.login_with_form(show_signup_option=False,
                                allow_cancel=True,
                                allow_remembered=False,
                                remember_by_default=False)
3 Likes