Файл: contao-3.5.8/system/modules/comments/templates/modules/mod_comment_form.xhtml
Строк: 48
<!-- indexer::stop -->
<div class="form">
<?php if ($this->requireLogin): ?>
<p class="info"><?= $this->login ?></p>
<?php else: ?>
<?php if ($this->confirm): ?>
<p class="confirm"><?= $this->confirm ?></p>
<?php elseif ($this->allowComments): ?>
<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}}" />
<div class="widget">
<?= $this->fields['name']->generateWithError() ?>
<?= $this->fields['name']->generateLabel() ?>
</div>
<div class="widget">
<?= $this->fields['email']->generateWithError() ?>
<?= $this->fields['email']->generateLabel() ?>
</div>
<div class="widget">
<?= $this->fields['website']->generateWithError() ?>
<?= $this->fields['website']->generateLabel() ?>
</div>
<?php if (isset($this->fields['captcha'])): ?>
<div class="widget">
<?= $this->fields['captcha']->generateWithError() ?>
<label for="ctrl_captcha"><?= $this->fields['captcha']->generateQuestion() ?><span class="mandatory">*</span></label>
</div>
<?php endif; ?>
<div class="widget">
<?= $this->fields['comment']->generateWithError() ?>
<label for="ctrl_<?= $this->fields['comment']->id ?>" class="invisible"><?= $this->fields['comment']->label ?></label>
</div>
<div class="widget">
<?= $this->fields['notify']->generateWithError() ?>
</div>
<div class="submit_container">
<input type="submit" class="submit" value="<?= $this->submit ?>" />
</div>
</div>
</form>
<?php endif; ?>
<?php endif; ?>
</div>
<!-- indexer::continue -->