mirror of
https://github.com/YunoHost-Apps/kanboard_ynh.git
synced 2024-09-03 19:36:17 +02:00
17 lines
No EOL
719 B
PHP
17 lines
No EOL
719 B
PHP
<div class="page-header">
|
|
<h2><?= t('Integration with third-party services') ?></h2>
|
|
</div>
|
|
|
|
<form method="post" action="<?= $this->url->href('config', 'integrations') ?>" autocomplete="off">
|
|
<?= $this->form->csrf() ?>
|
|
<?= $this->hook->render('template:config:integrations', array('values' => $values)) ?>
|
|
|
|
<h3><img src="<?= $this->url->dir() ?>assets/img/gravatar-icon.png"/> <?= t('Gravatar') ?></h3>
|
|
<div class="listing">
|
|
<?= $this->form->checkbox('integration_gravatar', t('Enable Gravatar images'), 1, $values['integration_gravatar'] == 1) ?>
|
|
</div>
|
|
|
|
<div class="form-actions">
|
|
<button type="submit" class="btn btn-blue"><?= t('Save') ?></button>
|
|
</div>
|
|
</form>
|