- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-09-2023 06:21 AM
I would like to modify the OOB login_locate_sso UI page slightly.
I'm trying to change bottom of this to go to a password reset URL instead of the local login URL.
I can't get the URL to work when I click on it.
Look at the AFTER code. This isn't working.
BEFORE
</div>
<div class="login-card-footer text-center">
<a class="btn btn-link" href="#" onclick="window.location.href = '${jvar_local_login_url}'; return false;">
${gs.getMessage('Login with username and password')}
</a>
</div>
</div>
AFTER
</div>
<div class="login-card-footer text-center">
<a class="btn btn-link" href="#" onclick="window.location.href = 'https://passwordreset.microsoftonline.com'; return false;">
${gs.getMessage('Forgot your password?')}
</a>
</div>
</div>
Solved! Go to Solution.

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-12-2023 06:42 AM
Sorry,
I created that, I just added it to the code around line 35 to create the jelly variable then called the variable in the later code to link to the MS site.

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-12-2023 06:42 AM
Sorry,
I created that, I just added it to the code around line 35 to create the jelly variable then called the variable in the later code to link to the MS site.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-12-2023 06:52 AM
Thanks Joe!