toir427 /
yii2-admin
| 1 | <?php |
||
| 2 | use yii\helpers\Html; |
||
| 3 | use yii\bootstrap\ActiveForm; |
||
|
0 ignored issues
–
show
|
|||
| 4 | |||
| 5 | /* @var $this yii\web\View */ |
||
| 6 | /* @var $form yii\bootstrap\ActiveForm */ |
||
| 7 | /* @var $model \toir427\admin\models\form\PasswordResetRequest */ |
||
| 8 | |||
| 9 | $this->title = 'Request password reset'; |
||
| 10 | $this->params['breadcrumbs'][] = $this->title; |
||
| 11 | ?> |
||
| 12 | <div class="site-request-password-reset"> |
||
| 13 | <h1><?= Html::encode($this->title) ?></h1> |
||
| 14 | |||
| 15 | <p>Please fill out your email. A link to reset password will be sent there.</p> |
||
| 16 | |||
| 17 | <div class="row"> |
||
| 18 | <div class="col-lg-5"> |
||
| 19 | <?php $form = ActiveForm::begin(['id' => 'request-password-reset-form']); ?> |
||
| 20 | <?= $form->field($model, 'email') ?> |
||
| 21 | <div class="form-group"> |
||
| 22 | <?= Html::submitButton(Yii::t('rbac-admin', 'Send'), ['class' => 'btn btn-primary']) ?> |
||
| 23 | </div> |
||
| 24 | <?php ActiveForm::end(); ?> |
||
| 25 | </div> |
||
| 26 | </div> |
||
| 27 | </div> |
||
| 28 |
The issue could also be caused by a filter entry in the build configuration. If the path has been excluded in your configuration, e.g.
excluded_paths: ["lib/*"], you can move it to the dependency path list as follows:For further information see https://scrutinizer-ci.com/docs/tools/php/php-scrutinizer/#list-dependency-paths