error.php 800 B

1234567891011121314151617181920212223242526272829
  1. <?php
  2. /**
  3. * Author: lf
  4. * Blog: https://blog.feehi.com
  5. * Email: job@feehi.com
  6. * Created at: 2016-04-14 15:44
  7. */
  8. /**
  9. * @var $code integer
  10. * @var $message string
  11. */
  12. ?>
  13. <div class="middle-box text-center animated fadeInDown">
  14. <h1><?= $code ?></h1>
  15. <h3 class="font-bold"><?= $name ?></h3>
  16. <div class="error-desc">
  17. <?= $message ?>
  18. <form target="_blank" class="form-inline m-t" action="http://www.baidu.com/s" role="form">
  19. <div class="form-group">
  20. <input type="text" name="wd" class="form-control"
  21. placeholder="<?= yii::t('app', 'Please Enter the Question') ?> …">
  22. </div>
  23. <button type="submit" class="btn btn-primary"><?= yii::t('app', 'Search') ?></button>
  24. </form>
  25. </div>
  26. </div>