/application/views/scripts/installer/tables.phtml

https://bitbucket.org/hamidrezas/melobit · Unknown · 33 lines · 30 code · 3 blank · 0 comment · 0 complexity · 85ee24fa37d75bce2e4faceec7dd4b47 MD5 · raw file

  1. <h3>Welcome to Melobit Installation</h3>
  2. <hr />
  3. <h4>[Step 3]</h4>
  4. <?php
  5. if ($this->error == null)
  6. {
  7. echo '<p>Congradulation! Your tables successfully was created:</p>';
  8. echo '<ul>';
  9. foreach ($this->listTables as $table)
  10. {
  11. echo '<li>' . $table . '</li>';
  12. }
  13. echo '</ul>';
  14. echo '<p>To login as administrator use this information:</p>';
  15. echo '<ul>';
  16. echo '<li>Your User: <strong>admin</strong></li>';
  17. echo '<li>Your Password: <strong>admin</strong></li>';
  18. echo '</ul>';
  19. echo '<p><strong>Important:</strong> Because of security reasons, change your password in next step.</p>';
  20. echo '<p><a href="/admin/config">Final Step</a> (Site Configuration)';
  21. echo '<hr />';
  22. echo '<p><strong>Note: </strong><em>Because of security reasons, InstallerController became hidden. So
  23. if you want to install MeloBit again, you can rename it to be ready for installation.</em></p>';
  24. }
  25. else
  26. {
  27. echo '<p>An error has been occured:</p>';
  28. echo $this->error;
  29. }
  30. ?>