Activating one Form after the other with an intent in between

So here is the structure I am aiming for:

- action: Form_01
- active_loop: Form 1
- active_loop: null
- action: utter_result
- action: utter_continue # Ask user if he wants to continue to next form
- intent: affirm
- action: Form_02
- active_loop: Form_02
- active_loop: null
- action: utter_result_Final

I would like the second form to be activated if the first form is filled and the intent is affirm/positive.

I tried to implement it in the abovementioned manner but to no avail. The second form simply do not execute. Is there anything specific I have to take care of in this use case?

Thank you!