tos.phtml 341 B

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