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\ResetPassword */ |
||
8 | |||
9 | $this->title = 'Reset password'; |
||
10 | $this->params['breadcrumbs'][] = $this->title; |
||
11 | ?> |
||
12 | <div class="site-reset-password"> |
||
13 | <h1><?= Html::encode($this->title) ?></h1> |
||
14 | |||
15 | <p>Please choose your new password:</p> |
||
16 | |||
17 | <div class="row"> |
||
18 | <div class="col-lg-5"> |
||
19 | <?php $form = ActiveForm::begin(['id' => 'reset-password-form']); ?> |
||
20 | <?= $form->field($model, 'password')->passwordInput() ?> |
||
21 | <?= $form->field($model, 'retypePassword')->passwordInput() ?> |
||
22 | <div class="form-group"> |
||
23 | <?= Html::submitButton(Yii::t('rbac-admin', 'Save'), ['class' => 'btn btn-primary']) ?> |
||
24 | </div> |
||
25 | <?php ActiveForm::end(); ?> |
||
26 | </div> |
||
27 | </div> |
||
28 | </div> |
||
29 |
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