default.tpl 577 B

12345678910111213141516171819
  1. <form class="form-horizontal normal-form" action="{$url}" method="post">
  2. <div class="form-group">
  3. <div class="col-lg-12">
  4. <legend>{$MGLANG->T('header')}</legend>
  5. </div>
  6. </div>
  7. {foreach from=$hidden item=field}
  8. {$field->html}
  9. {/foreach}
  10. {foreach from=$fields item=field}
  11. {if $field->opentag}
  12. <div class="form-group {if $field->error}has-error{/if}">
  13. {/if}
  14. {$field->html}
  15. {if $field->closetag}
  16. </div>
  17. {/if}
  18. {/foreach}
  19. </form>