confirm-registration.phtml 691 B

123456789101112131415161718192021
  1. <?php if ($this->verified === true) { ?>
  2. <p class="lead">
  3. <?php echo $this->_('Email address verification successful.'); ?>
  4. </p>
  5. <?php if ($this->settings['signup_settings'] == 1) { ?>
  6. <p>
  7. <?php echo $this->_('Thank you for verifying your email address.<br>'
  8. . 'You can now login using your username and password.'); ?>
  9. </p>
  10. <?php
  11. }
  12. else if ($this->settings['signup_settings'] == 2) {
  13. ?>
  14. <p>
  15. <?php echo $this->_('You can now login using your username and password if the account '
  16. . 'has been approved by the administrator.'); ?>
  17. </p>
  18. <?php } ?>
  19. <?php } ?>