I added auth0 login for my python web app as described in the example with auth0.authorize_redirect(redirect_uri=AUTH0_CALLBACK_URL, audience=AUTH0_AUDIENCE)
However, my customer want also a sign-up button directly beside the login button. How do I need to call the signup function with auth0.authorize_redirect(redirect_uri=AUTH0_CALLBACK_URL, audience=AUTH0_AUDIENCE)?
Could not find any documentation in the python example.
Thanks in advance!