<h3><?php echo $this->headline; ?></h3>
<div class="boxed">
<?php if($this->message): ?><p><?php echo $this->message; ?></p><?php endif; ?>
<?php echo $this->options; ?>

<?php if ($this->fields): ?>
<div id="<?php echo $this->class; ?>_new" class="address_new"<?php if($this->style): ?> style="<?php echo $this->style; ?>"<?php endif; ?>>
<?php if($this->tableless): ?>
<div class="grid-holder">
    <?= $this->fields ?>
</div>
<?php else: ?>
<table>
<?php echo $this->fields; ?>
</table>
<?php endif; ?>
</div>
<?php endif; ?>
  <p class="info ta_right"><sup>*</sup> Pflichtfelder</p>
</div>