| 1234567891011121314151617181920212223242526272829303132 |
- <?php
- /**
- * Author: lf
- * Blog: https://blog.feehi.com
- * Email: job@feehi.com
- * Created at: 2016-04-14 15:44
- */
- /**
- * @var $message string
- */
- $this->title = $name;
- ?>
- <div class="middle-box text-center animated fadeInDown">
- <h1><?= $code ?></h1>
- <h3 class="font-bold"><?= $name ?></h3>
- <div class="error-desc">
- <?= $message ?>~
- <form style="margin-top: 10px" target="_blank" class="form-inline m-t" action="http://www.baidu.com/s"
- role="form">
- <div class="form-group">
- <input type="text" name="wd" class="form-control"
- placeholder="<?= Yii::t('app', 'Please Enter the Question') ?> …">
- </div>
- <button style="margin-top: 5px" type="submit"
- class="btn btn-primary"><?= Yii::t('app', 'Search') ?></button>
- </form>
- </div>
- </div>
|