generated from aljawaid/KanboardSkeletonPlugin
-
-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
FIX: Migrate Icons for Improved Performance
- Resolves #15
- Loading branch information
Showing
3 changed files
with
40 additions
and
26 deletions.
There are no files selected for viewing
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,32 +1,34 @@ | ||
<!-- KanboardSupport Plugin --> | ||
<div class="page-header"> | ||
<h2 class=""><?= t('Webhook Settings') ?></h2> | ||
</div> | ||
<form method="post" class="" action="<?= $this->url->href('ConfigController', 'save', array('redirect' => 'webhook')) ?>" autocomplete="true"> | ||
<?= $this->form->csrf() ?> | ||
<div class="webhooks-page"> | ||
<div class="page-header" style="margin-top: 10px;"> | ||
<h2 class=""><span class="webhooks-icon"></span> <?= t('Webhook Settings') ?></h2> | ||
</div> | ||
<form method="post" class="" action="<?= $this->url->href('ConfigController', 'save', array('redirect' => 'webhook')) ?>" autocomplete="true"> | ||
<?= $this->form->csrf() ?> | ||
|
||
<?= $this->form->label(t('Webhook URL'), 'webhook_url') ?> | ||
<?= $this->form->text('webhook_url', $values, $errors) ?> | ||
|
||
<?= $this->form->label(t('Webhook URL'), 'webhook_url') ?> | ||
<?= $this->form->text('webhook_url', $values, $errors) ?> | ||
<div class="form-actions"> | ||
<button type="submit" class="btn btn-blue"><?= t('Save') ?></button> | ||
</div> | ||
</form> | ||
|
||
<div class="form-actions"> | ||
<button type="submit" class="btn btn-blue"><?= t('Save') ?></button> | ||
<div class="page-header margin-top"> | ||
<h2 class=""><?= t('Webhook Token') ?></h2> | ||
</div> | ||
<section class="message error cleaner-warning"> | ||
<header></header> | ||
<i class=""></i> | ||
<h3 class=""> | ||
<span class="message-title"><?= t('Warning') ?></span> | ||
<span class="message-text"><?= t('Resetting the webhook token may require the cron background jobs to be manually updated') ?></span> | ||
</h3> | ||
</section> | ||
<div class="panel"> | ||
<?= t('Token:') ?> | ||
<strong><?= $this->text->e($values['webhook_token']) ?></strong> | ||
</div> | ||
</form> | ||
|
||
<div class="page-header margin-top"> | ||
<h2 class=""><?= t('Webhook Token') ?></h2> | ||
</div> | ||
<section class="message error cleaner-warning"> | ||
<header></header> | ||
<i class=""></i> | ||
<h3 class=""> | ||
<span class="message-title"><?= t('Warning') ?></span> | ||
<span class="message-text"><?= t('Resetting the webhook token may require the cron background jobs to be manually updated') ?></span> | ||
</h3> | ||
</section> | ||
<div class="panel"> | ||
<?= t('Token:') ?> | ||
<strong><?= $this->text->e($values['webhook_token']) ?></strong> | ||
<?= $this->url->link(t('Reset Token'), 'ConfigController', 'token', array('type' => 'webhook'), true, 'btn btn-red') ?> | ||
</div> | ||
|
||
<?= $this->url->link(t('Reset Token'), 'ConfigController', 'token', array('type' => 'webhook'), true, 'btn btn-red') ?> |