success.php 1.0 KB

12345678910111213141516171819202122232425262728
  1. <?php
  2. /**
  3. * Author: lf
  4. * Blog: https://blog.feehi.com
  5. * Email: job@feehi.com
  6. * Created at: 2016-10-19 13:11
  7. */
  8. $this->title = Yii::t('install', 'Congratulations! Success installed');
  9. ?>
  10. <section class="section">
  11. <div style="padding: 40px 20px;">
  12. <div class="text-center">
  13. <a style="font-size: 18px;"><?= Yii::t('install', 'Congratulations! Success installed') ?></a>
  14. <br>
  15. <br>
  16. <div class="alert alert-danger" style="width: 350px;display: inline-block;">
  17. <?= Yii::t('install', 'For your site security, please remove the directory install! and, backup common/config/main-local.php') ?>
  18. </div>
  19. <br>
  20. <a target="_blank" class="btn btn-success"
  21. href="<?= Yii::$app->getRequest()->hostInfo ?>"><?= Yii::t('install', 'go Frontend') ?></a>
  22. <a target="_blank" class="btn btn-success"
  23. href="<?= Yii::$app->getRequest()->hostInfo ?>/admin/"><?= Yii::t('install', 'go Backend') ?></a>
  24. </div>
  25. </div>
  26. </section>