Файл: contao-3.5.8/system/modules/core/templates/forms/form.xhtml
Строк: 27
<!-- indexer::stop -->
<div class="<?= $this->class ?> <?= $this->tableless ? 'tableless' : 'tableform' ?> block"<?= $this->cssID ?><?php if ($this->style): ?> style="<?= $this->style ?>"<?php endif; ?>>
<?php if ($this->headline): ?>
<<?= $this->hl ?>><?= $this->headline ?></<?= $this->hl ?>>
<?php endif; ?>
<form action="<?= $this->action ?>" id="<?= $this->formId ?>" method="<?= $this->method ?>" enctype="<?= $this->enctype ?>"<?= $this->attributes ?>>
<div class="formbody">
<?php if ($this->method != 'get'): ?>
<input type="hidden" name="FORM_SUBMIT" value="<?= $this->formSubmit ?>" />
<input type="hidden" name="REQUEST_TOKEN" value="{{request_token}}" />
<?php if ($this->maxFileSize): ?>
<input type="hidden" name="MAX_FILE_SIZE" value="<?= $this->maxFileSize ?>" />
<?php endif; ?>
<?php endif; ?>
<?= $this->hidden ?>
<?php if (!$this->tableless): ?>
<table>
<?= $this->fields ?>
</table>
<?php else: ?>
<?= $this->fields ?>
<?php endif; ?>
</div>
</form>
</div>
<!-- indexer::continue -->