External form with Angular

Hi,
I’d like to create a spring boot app with Camunda and open an external form in a new page created with Angular when I run the process.
Any idea on how to do that ?
Thanks in advance :relaxed:

@Touna, If you want to call a task form that is not part of your application, you can add a reference to the form in relevant XML tag looks like this:

<userTask id="FormEntry" camunda:formKey="app:starwars.html" 
   camunda:candidateGroups="starwars"
   name="Form Entry">
</userTask>

When you have completed the task, the call back URL will be called.

Refer this docs page for configure external-task-forms.

How to add JSF/Angular Forms to your process application: