I have looked into the HTML of CAS 6 (if CAS 6 don't have the feature, CAS 5 won't have) of the password reset success page, I don't see any preservation of service, so I guess this part is not implemented...
You see that in the form action here
<form method="post" id="form" class="fm-v clearfix" th:action="@{/login}">
They just point to /login without any service parameter.
So I think customization might be needed for this to be done.
Side note:
- If you only have one service, you can actually set a default service, and that will make it so, even no service in the header, user still getting redirected back to the service they should go to:
See if the above info helps...
- Andy