How to add Forgotten Password text in Login with redirect to other page in Yii2 -
i need how put "forgotten password" login page redirect page want go after clicked
try this:
<?= html::a(yii::t('app', 'forgotten password?'), ['site/change-password'], ['class' => 'text-center']) ?>
in site
controller :
public function actionchangepassword() { return $this->render('changepassword'); }
Comments
Post a Comment