<?php/** @var yii\web\View$this *//** @var yii\bootstrap4\ActiveForm $form *//** @var \frontend\models\ResetPasswordForm $model */useyii\bootstrap4\Html;useyii\bootstrap4\ActiveForm;$this->title='Resend verification email';$this->params['breadcrumbs'][]=$this->title;?><divclass="site-resend-verification-email"><h1><?=Html::encode($this->title)?></h1><p>Please fill out your email. A verification email will be sent there.</p><divclass="row"><divclass="col-lg-5"><?php$form=ActiveForm::begin(['id'=>'resend-verification-email-form']);?><?=$form->field($model,'email')->textInput(['autofocus'=>true])?><divclass="form-group"><?=Html::submitButton('Send',['class'=>'btn btn-primary'])?></div><?phpActiveForm::end();?></div></div></div>