privacy.phtml 992 B

123456789101112131415161718192021222324252627
  1. <?php
  2. /** @var FreshRSS_View $this */
  3. $this->partial('aside_configure');
  4. ?>
  5. <main class="post">
  6. <h1><?= _t('conf.privacy') ?></h1>
  7. <form method="post" action="<?= _url('configure', 'privacy') ?>" data-auto-leave-validation="1">
  8. <input type="hidden" name="_csrf" value="<?= FreshRSS_Auth::csrfToken() ?>" />
  9. <div class="form-group">
  10. <label class="group-name" for="retrieve_extension_list"><?= _t('conf.privacy.retrieve_extension_list') ?></label>
  11. <div class="group-controls">
  12. <input type="checkbox" id="retrieve_extension_list" name="retrieve_extension_list" value="1"<?=
  13. FreshRSS_Context::userConf()->retrieve_extension_list !== false ? ' checked="checked"' : '' ?> />
  14. </div>
  15. </div>
  16. <div class="form-group form-actions">
  17. <div class="group-controls">
  18. <button type="submit" class="btn btn-important"><?= _t('gen.action.submit') ?></button>
  19. <button type="reset" class="btn"><?= _t('gen.action.cancel') ?></button>
  20. </div>
  21. </div>
  22. </form>
  23. </main>