Support "signinUrl" in forget page

This commit is contained in:
Yang Luo
2024-02-14 02:36:52 +08:00
parent 75699c4a26
commit bcfbfc6947
2 changed files with 12 additions and 2 deletions

View File

@ -1253,7 +1253,11 @@ export function renderForgetLink(application, text) {
}
}
return renderLink(url, text, null);
const storeSigninUrl = () => {
sessionStorage.setItem("signinUrl", window.location.href);
};
return renderLink(url, text, storeSigninUrl);
}
export function renderHelmet(application) {