error.php 1.2 KB

12345678910111213141516171819202122232425262728293031323334353637383940
  1. <?php
  2. /* @var $this yii\web\View */
  3. /* @var $name string */
  4. /* @var $message string */
  5. /* @var $exception Exception */
  6. use yii\helpers\Html;
  7. $this->title = $name;
  8. $this->params['breadcrumbs'] = [['label' => $this->title]];
  9. ?>
  10. <div class="error-page">
  11. <div class="error-content" style="margin-left: auto;">
  12. <h3><i class="fas fa-exclamation-triangle text-danger"></i> <?= Html::encode($name) ?></h3>
  13. <p>
  14. <?= nl2br(Html::encode($message)) ?>
  15. </p>
  16. <p>
  17. The above error occurred while the Web server was processing your request.
  18. Please contact us if you think this is a server error. Thank you.
  19. Meanwhile, you may <?= Html::a('return to dashboard', Yii::$app->homeUrl); ?>
  20. or try using the search form.
  21. </p>
  22. <form class="search-form" style="margin-right: 190px;">
  23. <div class="input-group">
  24. <input type="text" name="search" class="form-control" placeholder="Search">
  25. <div class="input-group-append">
  26. <button type="submit" name="submit" class="btn btn-danger"><i class="fas fa-search"></i>
  27. </button>
  28. </div>
  29. </div>
  30. </form>
  31. </div>
  32. </div>