Browse code

Progress

Benjamin Roth authored on21/02/2023 19:42:19
Showing1 changed files
1 1
new file mode 100644
... ...
@@ -0,0 +1,20 @@
1
+<h3><?php echo $this->headline; ?></h3>
2
+<div class="boxed">
3
+<?php if($this->message): ?><p><?php echo $this->message; ?></p><?php endif; ?>
4
+<?php echo $this->options; ?>
5
+
6
+<?php if ($this->fields): ?>
7
+<div id="<?php echo $this->class; ?>_new" class="address_new"<?php if($this->style): ?> style="<?php echo $this->style; ?>"<?php endif; ?>>
8
+<?php if($this->tableless): ?>
9
+<div class="grid-holder">
10
+    <?= $this->fields ?>
11
+</div>
12
+<?php else: ?>
13
+<table>
14
+<?php echo $this->fields; ?>
15
+</table>
16
+<?php endif; ?>
17
+</div>
18
+<?php endif; ?>
19
+  <p class="info ta_right"><sup>*</sup> Pflichtfelder</p>
20
+</div>