tos.phtml 344 B

1234567891011121314
  1. <?php /** @var FreshRSS_View $this */ ?>
  2. <main class="post content">
  3. <?php if ($this->can_register) { ?>
  4. <a href="<?= _url('auth', 'register') ?>">
  5. <?= _t('gen.action.back') ?>
  6. </a>
  7. <?php } else { ?>
  8. <a href="<?= _url('index', 'index') ?>">
  9. <?= _t('gen.action.back') ?>
  10. </a>
  11. <?php } ?>
  12. <?= $this->terms_of_service ?>
  13. </main>