error.php 615 B

123456789101112131415161718192021
  1. <?php
  2. /* @var $this yii\web\View */
  3. /* @var $name string */
  4. /* @var $message string */
  5. /* @var $exception Exception */
  6. use common\helpers\Html;
  7. $this->title = $name;
  8. ?>
  9. <div class="error-page text-center" style="padding-top: 80px">
  10. <div style="height: 230px; width: 600px">
  11. <img src="/resources/img/no-data.png" alt="" width="230">
  12. </div>
  13. <h1 style="color: #869099"><?= Html::encode($code) ?></h1>
  14. <h2 style="color: #869099;padding-bottom: 10px"><?= Html::encode($name) ?></h2>
  15. <h5 style="color: #869099"><?= nl2br(Html::encode($message)) ?></h5>
  16. <!-- /.error-content -->
  17. </div>
粤ICP备19079148号