activate-license.phtml 1.1 KB

1234567891011121314151617181920212223242526272829303132333435363738
  1. <?php
  2. /**
  3. * @version 7.9 [rev.7.9.01]
  4. */
  5. /** @var bool $connected */
  6. /** @var bool $submitted */
  7. /** @var string $httpHost */
  8. /** @var string $documentRoot */
  9. if ($connected) {
  10. if ($submitted) { ?>
  11. <blockquote>
  12. <?php echo sprintf(
  13. $this->_('Please <a href="%s">click here</a> to access your website. <br>'
  14. . '<strong>Important</strong>: If the activation key is invalid, you will be redirected back to this page.'),
  15. $this->url(null, 'app-home')); ?>
  16. </blockquote>
  17. <?php
  18. }
  19. else {
  20. ?>
  21. <blockquote>
  22. <?php echo sprintf(
  23. $this->_('To generate your license activation key, please <a href="%s" target="_blank">click here</a> and use the data below:'),
  24. 'https://www.phpprobid.com/activate-license');
  25. ?>
  26. </blockquote>
  27. <dl class="dl-horizontal">
  28. <dt><?php echo $this->_('HTTP Host'); ?></dt>
  29. <dd><?php echo $httpHost; ?></dd>
  30. <dt><?php echo $this->_('Document Root'); ?></dt>
  31. <dd><?php echo $documentRoot; ?></dd>
  32. </dl>
  33. <?php } ?>
  34. <?php echo $this->form; ?>
  35. <?php } ?>