Distinguishing Auth0 signup from login

hi,
how can I distinguish Auth0 signup from login, both use same popup and return same user details, I want to trigger form with more profile data after signup

Hi @Yogendra :wave:

I’m not sure I understand your question. You would like to redirect the user to a specific page after they first signup (but not when they login) so they can provide more information in a profile form. Is that correct?

yes that is the case,

@Joyce you looked into this?
thanks

Hi @Yogendra :wave:

At the moment, we don’t have that option in-built in our Auth0 plugin.

However, one way you could do this in no-code WeWeb is by:

  • creating a modal with the information you want to fill out after sign up, then
  • binding the display of that modal to a function with logic that determines if the user has already filled out a profile form or not, for example if(user.favoriteColor == null)

Does that help?