error.php 1.0 KB

12345678910111213141516171819202122232425262728293031323334353637
  1. <?php use common\widgets\UeditorWidget; ?>
  2. <link rel="stylesheet" href="/css/xenon-components.css">
  3. <div class="page-error centered">
  4. <div class="error-symbol">
  5. <i class="fa-warning"></i>
  6. </div>
  7. <h2>
  8. <?=$title ?>
  9. <small><?=$msg ?></small>
  10. </h2>
  11. <!--<p>We did not find the page you were looking for!</p>
  12. <p>You can search again or contact one of our agents to help you!</p>-->
  13. </div>
  14. <div class="page-error-search centered">
  15. <!--<form class="form-half" method="get" action="" enctype="application/x-www-form-urlencoded">
  16. <input type="text" class="form-control" placeholder="Search..." />
  17. <button type="submit" class="btn-unstyled">
  18. <i class="linecons-search"></i>
  19. </button>
  20. </form>-->
  21. <a href="javascript:;" class="go-back" onclick="history.go(-1)">
  22. <h3><i class="fa-angle-left"></i> 返回</h3>
  23. </a>
  24. </div>
  25. <!-- footer -->
  26. <?php
  27. use backend\widgets\FooterWidget;
  28. ?>
  29. <?= FooterWidget::widget()?>
  30. <!-- footer -->