templates/web/customer/form/start.twig line 1

Open in your IDE?
  1. {##
  2.  # Form start
  3.  #}
  4.  
  5. <form{% for paramName, paramValue in this.getFormAttributes() %} {{ paramName }}="{{ paramValue }}"{% endfor %}>
  6. <div class="form-params" style="display: none;">
  7.   {% for paramName, paramValue in this.getFormParams() %}
  8.     <input type="hidden" name="{{ paramName }}" value="{{ paramValue }}" />
  9.   {% endfor %}
  10. </div>