requestPasswordResetToken.php 904 B

12345678910111213141516171819202122232425262728293031
  1. <?php
  2. /* @var $this yii\web\View */
  3. /* @var $form yii\bootstrap\ActiveForm */
  4. /* @var $model \frontend\models\PasswordResetRequestForm */
  5. use yii\helpers\Html;
  6. use yii\bootstrap\ActiveForm;
  7. $this->title = '重置密码';
  8. $this->params['breadcrumbs'][] = $this->title;
  9. ?>
  10. <div class="site-request-password-reset">
  11. <h1><?= Html::encode($this->title) ?></h1>
  12. <p>Please fill out your email. A link to reset password will be sent there.</p>
  13. <div class="row">
  14. <div class="col-lg-5">
  15. <?php $form = ActiveForm::begin(['id' => 'request-password-reset-form']); ?>
  16. <?= $form->field($model, 'email')->textInput(['autofocus' => true]) ?>
  17. <div class="form-group">
  18. <?= Html::submitButton('Send', ['class' => 'btn btn-primary']) ?>
  19. </div>
  20. <?php ActiveForm::end(); ?>
  21. </div>
  22. </div>
  23. </div>