Activating new form from the current form

Hey there! You should be able to do this with stories and a featurized slot. E.g. if the slot is

slots:
   is_new_user:
      type: bool

then your stories could look something like

## returning user
* greet
  - user_form
  - slot{"is_new_user": false}
  - returning_user_form

## new user
* greet
  - user_form
  - slot{"is_new_user": true}
  - new_user_form

You’re not moving from one form to another, but the first form is setting a slot based on the user input of “yes” or “no” if they’ve used your product before. Then when the featurized slot is set, the stories will drive which form is chosen next.

Does that help?