1 | 1 |
new file mode 100644 |
... | ... |
@@ -0,0 +1,18 @@ |
1 |
+<?php $this->extend('block_searchable'); ?> |
|
2 |
+ |
|
3 |
+<?php $this->block('content'); ?> |
|
4 |
+ |
|
5 |
+<form id="form_oxVoucherSearch_<?= $this->id ?>"<?php if ($this->action): ?> action="<?= $this->action ?>"<?php endif; ?> method="get"> |
|
6 |
+ <div class="formbody"> |
|
7 |
+ <div class="widget widget-text w100"> |
|
8 |
+ <label for="voucher_search_<?= $this->id ?>"><?= $this->searchLabel ?></label> |
|
9 |
+ <input class="text" name="voucher_search" id="voucher_search_<?= $this->id ?>" type="text"<?php if (\Input::get('voucher_search')):?> value="<?= \Input::get('voucher_search') ?>"<?php endif; ?>/> |
|
10 |
+ </div> |
|
11 |
+ |
|
12 |
+ <div class="submit_container widget lblp button_block"> |
|
13 |
+ <button type="submit" class="submit"><?= $this->submitLabel ?></button> |
|
14 |
+ </div> |
|
15 |
+ </div> |
|
16 |
+</form> |
|
17 |
+ |
|
18 |
+<?php $this->endblock(); ?> |