apply.phtml 388 B

1234567891011121314151617
  1. <?php
  2. declare(strict_types=1);
  3. /** @var FreshRSS_View $this */
  4. $this->partial('aside_configure');
  5. ?>
  6. <main class="post">
  7. <div class="link-back-wrapper">
  8. <a class="link-back" href="<?= _url('index', 'index') ?>"><?= _t('gen.action.back_to_rss_feeds') ?></a>
  9. </div>
  10. <h1><?= _t('admin.update') ?></h1>
  11. <?php
  12. // @phpstan-ignore function.notFound
  13. ask_info_update();
  14. ?>
  15. </main>