We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent d3299e8 commit dbdd4d5Copy full SHA for dbdd4d5
src/views/user/passwordResetRequestForm.php
@@ -7,3 +7,15 @@
7
$this->title = Module::t('Reset password');
8
$this->params['breadcrumbs'][] = $this->title;
9
?>
10
+
11
+<?php $form = ActiveForm::begin([]);?>
12
+ <?= $form->field($model, 'username')->textInput(['autofocus' => true]) ?>
13
14
+ <?= $form->field($model, 'email')->textInput() ?>
15
16
+ <div class="form-group">
17
+ <div class="col-lg-12">
18
+ <?= Html::submitButton('Отправить', ['class' => 'login-button']) ?>
19
+ </div>
20
21
+<?php ActiveForm::end(); ?>
0 commit comments