如何在登录中添加忘记密码文本并重定向到 Yii2 中的其他页面

How to add Forgotten Password text in Login with redirect to other page in Yii2

我需要一些帮助,如何将 "Forgotten Password" 放入登录页面,以便在点击后重定向到我想转到的页面

试试这个:

<?= Html::a(Yii::t('app', 'Forgotten Password?'), 
           ['site/change-password'], 
           ['class' => 'text-center']) 
?>

site 控制器中:

public function actionChangePassword()
{
   return $this->render('ChangePassword');
}