1 | 1 |
new file mode 100644 |
... | ... |
@@ -0,0 +1,38 @@ |
1 |
+ |
|
2 |
+<!-- indexer::stop --> |
|
3 |
+<div class="<?= $this->class ?> block"<?= $this->cssID ?><?php if ($this->style): ?> style="<?= $this->style ?>"<?php endif; ?>> |
|
4 |
+ |
|
5 |
+ <?php if ($this->headline): ?> |
|
6 |
+ <<?= $this->hl ?>><?= $this->headline ?></<?= $this->hl ?>> |
|
7 |
+ <?php endif; ?> |
|
8 |
+ |
|
9 |
+ <?php if ($this->message): ?> |
|
10 |
+ <p class="tl_confirm"><?= $this->message ?></p> |
|
11 |
+ <?php endif; ?> |
|
12 |
+ |
|
13 |
+ <form id="<?= $this->formId ?>" method="post" enctype="<?= $this->enctype ?>"> |
|
14 |
+ <div class="formbody row"> |
|
15 |
+ <input type="hidden" name="FORM_SUBMIT" value="<?= $this->formId ?>"> |
|
16 |
+ <input type="hidden" name="REQUEST_TOKEN" value="<?= $this->requestToken ?>"> |
|
17 |
+ |
|
18 |
+ <?php foreach ($this->categories as $legend => $category): ?> |
|
19 |
+ |
|
20 |
+ <fieldset class="col-12"> |
|
21 |
+ <?php if ($legend): ?> |
|
22 |
+ <legend><?= $legend ?></legend> |
|
23 |
+ <?php endif; ?> |
|
24 |
+ <div class="row"> |
|
25 |
+ <?= implode('', $category) ?> |
|
26 |
+ </div> |
|
27 |
+ </fieldset> |
|
28 |
+ |
|
29 |
+ <?php endforeach; ?> |
|
30 |
+ |
|
31 |
+ <div class="widget widget-submit"> |
|
32 |
+ <button type="submit" class="submit"><?= $this->slabel ?></button> |
|
33 |
+ </div> |
|
34 |
+ </div> |
|
35 |
+ </form> |
|
36 |
+ |
|
37 |
+</div> |
|
38 |
+<!-- indexer::continue --> |