Файл: contao-3.5.8/system/modules/core/templates/modules/mod_password.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="post">
<div class="formbody">
<input type="hidden" name="FORM_SUBMIT" value="<?= $this->formId ?>" />
<input type="hidden" name="REQUEST_TOKEN" value="{{request_token}}" />
<?php if ($this->error): ?>
<p class="error"><?= $this->error ?></p>
<?php endif; ?>
<?php if (!$this->tableless): ?>
<table>
<?= $this->fields ?>
<tr class="<?= $this->rowLast ?>">
<td class="col_0 col_first"> </td>
<td class="col_1 col_last"><div class="submit_container"><input type="submit" class="submit" value="<?= $this->slabel ?>" /></div></td>
</tr>
</table>
<?php else: ?>
<div class="fields">
<?= $this->fields ?>
</div>
<div class="submit_container">
<input type="submit" class="submit" value="<?= $this->slabel ?>" />
</div>
<?php endif; ?>
</div>
</form>
</div>
<!-- indexer::continue -->