Hi,
I am creating all the new user's from the "Create User" button in User Management and while creating them I also tick the "Send Notification" box.
In that way new users will receive an email which will prompt them to set their password, as per below:
When the new user clicks on "Set my Password" it redirects them to another page where they insert a new password and clicks on "Reset". When the user clicks on Reset then it is redirected to the below page:
As you can see there is a "log in" link in that page.
What I want to do is to change the URL that this "log in" redirects you to.
This log in link be default it redirects you to <base_url>/login.jsp page.
Things that I tried so far:
I checked /<jira_install>/atlassian-jira/views/resetpassword_success.jsp and I found this line "<a href="<%=request.getContextPath()%>/login.jsp"></ww:param>" and I replaced the /login.jsp with the path that I wanted to specify, but it still redirected to /login.jsp when I clicked the "log in" link.
Thank you!