15 lines
639 B
PHP
Raw Normal View History

2022-11-27 21:21:19 +01:00
<?php $this->layout('panel') ?>
2023-05-09 18:55:50 +02:00
<form method="post" class="options-form" data-form="system-options-form">
<div class="header">
<div class="header-title"><?= $this->translate('panel.options.options') ?></div>
<div>
2024-01-21 20:58:47 +01:00
<button type="submit" class="button button-accent button-right" data-command="save"><?= $this->icon('check-circle') ?> <?= $this->translate('panel.modal.action.save') ?></button>
2023-05-09 18:55:50 +02:00
<input type="hidden" name="csrf-token" value="<?= $csrfToken ?>">
</div>
</div>
2018-06-16 17:49:27 +02:00
<?= $tabs ?>
2023-08-06 13:33:50 +02:00
<div>
<?php $this->insert('fields', ['fields' => $fields]) ?>
2023-05-09 18:55:50 +02:00
</div>
2024-04-27 13:06:15 +02:00
</form>