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

Popular posts from this blog

sql - invalid in the select list because it is not contained in either an aggregate function -

Angularjs unit testing - ng-disabled not working when adding text to textarea -

How to start daemon on android by adb -