
<div class="<?= $this->class; ?>" <?php if ($this->cssID): ?>id="<?= $this->cssID; ?>"<?php endif; ?>>
    <?php if($this->headline):?><<?= $this->hl ?>><?= $this->headline ?></<?= $this->hl ?>><?php endif;?>
    <form<?php if ($this->form->action): ?> action="<?= $this->form->action ?>"<?php endif; ?> id="<?= $this->form->formId ?>" method="<?= $this->form->method ?>" enctype="<?= $this->form->enctype ?>"<?= $this->form->attributes ?><?= $this->form->novalidate ?>>
        <div class="formbody">
            <?php if ($this->error): ?>
                <p class="error"><?= $this->errorMsg; ?></p>
            <?php endif; ?>
            <?= $this->form->hidden; ?>
            <?= $this->form->fields; ?>
        </div>
    </form>
</div>
