diff options
author | Frederic Guillot <fred@kanboard.net> | 2016-06-02 20:58:34 -0400 |
---|---|---|
committer | Frederic Guillot <fred@kanboard.net> | 2016-06-02 20:58:34 -0400 |
commit | a27057dd6fbf59e7e88ac19494573a5415d2707e (patch) | |
tree | 54d343d06cef9de6473965ff20f2405812594902 /app/Template | |
parent | 523e0aad7ea6682f310fc26e80633344f414de7a (diff) |
Expose to the user interface the email sender address
Diffstat (limited to 'app/Template')
-rw-r--r-- | app/Template/config/application.php | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/app/Template/config/application.php b/app/Template/config/application.php index 0f842f6e..b66d0633 100644 --- a/app/Template/config/application.php +++ b/app/Template/config/application.php @@ -9,6 +9,9 @@ <?= $this->form->text('application_url', $values, $errors, array('placeholder="http://example.kanboard.net/"')) ?> <p class="form-help"><?= t('Example: http://example.kanboard.net/ (used to generate absolute URLs)') ?></p> + <?= $this->form->label(t('Email sender address'), 'mail_sender_address') ?> + <?= $this->form->text('mail_sender_address', $values, $errors, array('placeholder="'.MAIL_FROM.'"')) ?> + <?= $this->form->label(t('Language'), 'application_language') ?> <?= $this->form->select('application_language', $languages, $values, $errors) ?> |