tos.phtml 301 B

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