Improve settings pages layout
This commit is contained in:
@@ -1,9 +1,7 @@
|
||||
<div class="page-header">
|
||||
<h2><?= t('Webhook settings') ?></h2>
|
||||
</div>
|
||||
<section>
|
||||
<form method="post" action="<?= $this->url->href('ConfigController', 'save', array('redirect' => 'webhook')) ?>" autocomplete="off">
|
||||
|
||||
<?= $this->form->csrf() ?>
|
||||
|
||||
<?= $this->form->label(t('Webhook URL'), 'webhook_url') ?>
|
||||
@@ -13,19 +11,13 @@
|
||||
<button type="submit" class="btn btn-blue"><?= t('Save') ?></button>
|
||||
</div>
|
||||
</form>
|
||||
</section>
|
||||
|
||||
<div class="page-header margin-top">
|
||||
<h2><?= t('Webhook token') ?></h2>
|
||||
</div>
|
||||
<section class="panel">
|
||||
<ul>
|
||||
<li>
|
||||
<?= t('Webhook token:') ?>
|
||||
<strong><?= $this->text->e($values['webhook_token']) ?></strong>
|
||||
</li>
|
||||
<li>
|
||||
<?= $this->url->link(t('Reset token'), 'ConfigController', 'token', array('type' => 'webhook'), true) ?>
|
||||
</li>
|
||||
</ul>
|
||||
</section>
|
||||
<div class="panel">
|
||||
<?= t('Webhook token:') ?>
|
||||
<strong><?= $this->text->e($values['webhook_token']) ?></strong>
|
||||
</div>
|
||||
|
||||
<?= $this->url->link(t('Reset token'), 'ConfigController', 'token', array('type' => 'webhook'), true, 'btn btn-red') ?>
|
||||
|
||||
Reference in New Issue
Block a user