diff options
Diffstat (limited to 'app/Template/config')
-rw-r--r-- | app/Template/config/application.php | 2 | ||||
-rw-r--r-- | app/Template/config/board.php | 2 | ||||
-rw-r--r-- | app/Template/config/calendar.php | 2 | ||||
-rw-r--r-- | app/Template/config/integrations.php | 2 | ||||
-rw-r--r-- | app/Template/config/project.php | 2 | ||||
-rw-r--r-- | app/Template/config/webhook.php | 2 |
6 files changed, 6 insertions, 6 deletions
diff --git a/app/Template/config/application.php b/app/Template/config/application.php index d78ae427..259756bc 100644 --- a/app/Template/config/application.php +++ b/app/Template/config/application.php @@ -33,6 +33,6 @@ <?= $this->hook->render('template:config:application', array('values' => $values, 'errors' => $errors)) ?> <div class="form-actions"> - <input type="submit" value="<?= t('Save') ?>" class="btn btn-blue"> + <button type="submit" class="btn btn-blue"><?= t('Save') ?></button> </div> </form> diff --git a/app/Template/config/board.php b/app/Template/config/board.php index f787a931..ba1bab59 100644 --- a/app/Template/config/board.php +++ b/app/Template/config/board.php @@ -18,6 +18,6 @@ <p class="form-help"><?= t('Frequency in second (0 to disable this feature, 10 seconds by default)') ?></p> <div class="form-actions"> - <input type="submit" value="<?= t('Save') ?>" class="btn btn-blue"> + <button type="submit" class="btn btn-blue"><?= t('Save') ?></button> </div> </form> diff --git a/app/Template/config/calendar.php b/app/Template/config/calendar.php index f5250132..b7b230df 100644 --- a/app/Template/config/calendar.php +++ b/app/Template/config/calendar.php @@ -28,7 +28,7 @@ </div> <div class="form-actions"> - <input type="submit" value="<?= t('Save') ?>" class="btn btn-blue"/> + <button type="submit" class="btn btn-blue"><?= t('Save') ?></button> </div> </form> </section>
\ No newline at end of file diff --git a/app/Template/config/integrations.php b/app/Template/config/integrations.php index ced051f7..e404c52e 100644 --- a/app/Template/config/integrations.php +++ b/app/Template/config/integrations.php @@ -12,6 +12,6 @@ </div> <div class="form-actions"> - <input type="submit" value="<?= t('Save') ?>" class="btn btn-blue"/> + <button type="submit" class="btn btn-blue"><?= t('Save') ?></button> </div> </form>
\ No newline at end of file diff --git a/app/Template/config/project.php b/app/Template/config/project.php index 1d32a14f..b6b7ec25 100644 --- a/app/Template/config/project.php +++ b/app/Template/config/project.php @@ -22,6 +22,6 @@ <?= $this->form->checkbox('cfd_include_closed_tasks', t('Include closed tasks in the cumulative flow diagram'), 1, $values['cfd_include_closed_tasks'] == 1) ?> <div class="form-actions"> - <input type="submit" value="<?= t('Save') ?>" class="btn btn-blue"> + <button type="submit" class="btn btn-blue"><?= t('Save') ?></button> </div> </form> diff --git a/app/Template/config/webhook.php b/app/Template/config/webhook.php index bcf95787..b96979a0 100644 --- a/app/Template/config/webhook.php +++ b/app/Template/config/webhook.php @@ -10,7 +10,7 @@ <?= $this->form->text('webhook_url', $values, $errors) ?> <div class="form-actions"> - <input type="submit" value="<?= t('Save') ?>" class="btn btn-blue"/> + <button type="submit" class="btn btn-blue"><?= t('Save') ?></button> </div> </form> </section> |