Embedded form don't work

Hi,

I created embedded form:

<form  name="wniosekowizytowki" role="form">
  <div class="form-group">
    <label for="imie-field">Imię</label>
    <input required
    	   type="text"
           cam-variable-name="imie"
           cam-variable-type="String"
           ng-minlength="3"
       	   ng-maxlength="25"
           class="form-control" />
  </div>
  <div class="form-group">
    <label for="nazwisko-field">Nazwisko</label>
    <input required
    	   type="text"
           cam-variable-name="nazwisko"
           cam-variable-type="String"
           ng-minlength="3"
       	   ng-maxlength="25"
           class="form-control" />
  </div>
  <div class="form-group">
    <label for="ilosc_wizytowek-field">Ilość wizytówek</label>
    <input cam-variable-name="ilosc_wizytowek"
           cam-variable-type="Long"
           class="form-control" />
  </div>
</form>

The file is in src/main/webapp/forms/wniosekowizytowki.html and I have an access to http://host:8080/process-name/forms/wniosekowizytowki.html

But when I puted to bpmn file:

  <bpmn:process id="wniosek-o-wizytowki" name="Wniosek o produkcję nowych wizytówek" isExecutable="true">
    <bpmn:startEvent id="StartEvent_1" name="Wniosek o produkcję nowych wizytówek" camunda:formKey="embedded:app:forms/wniosekowizytowki.html">
      <bpmn:outgoing>SequenceFlow_1rjaly4</bpmn:outgoing>
    </bpmn:startEvent>

and I run process I have only “Loading…” and nothing happened

Regards,
Sew

Hi Sew,

if you open the browser developer console (F12) and navigate to the Network tab, do you see any requests that fail?

Cheers
Sebastian